Landing: d2c6e7a03408
Project / Subsystem
gcc / aarch64
Date
2026-05-27
Author
Alex Coplan
Commit
d2c6e7a03408da1b68fae3abed77078b33d6c698
Source
github
Perf win
No
Breaking
No
All attributes
- project
- gcc
- subsystem
- aarch64
- patch_id
- —
- commit_hash
- d2c6e7a03408da1b68fae3abed77078b33d6c698
- source_type
- github
- headline
- AArch64: Uses UINTVAL consistently.
- tldr
- GCC's AArch64 backend now consistently uses UINTVAL instead of casting INTVAL to unsigned HOST_WIDE_INT.
- author
- Alex Coplan
- outcome
- committed
- performance_win
- false
- breaking_change
- false
- series_id
- —
- series_parts
- []
- tags
-
- • aarch64
- • code cleanup
- • readability
- discussion_id_link
- —
- bugzilla_pr
- —
- date
- 2026-05-27T00:00:00.000Z
This commit replaces instances of (unsigned HOST_WIDE_INT) INTVAL (X) with UINTVAL (x) in the AArch64 backend. This change improves code readability and conciseness by using the defined UINTVAL macro directly. This doesn’t change functionality.