Landing: 3d409cb2827e
Project / Subsystem
gcc / phiprop
Date
2026-03-27
Author
Andrew Pinski
Commit
3d409cb2827e7c6d531ec85989f297faf2416bca
Source
github
Perf win
No
Breaking
No
All attributes
- project
- gcc
- subsystem
- phiprop
- patch_id
- —
- commit_hash
- 3d409cb2827e7c6d531ec85989f297faf2416bca
- source_type
- github
- headline
- phiprop: Move vuse variable declaration closer to its use.
- tldr
- This commit improves code readability in the phiprop pass by moving the declaration of the `vuse` variable closer to where it is used.
- author
- Andrew Pinski
- outcome
- committed
- performance_win
- false
- breaking_change
- false
- series_id
- —
- series_parts
- []
- tags
-
- • cleanup
- • readability
- discussion_id_link
- —
- bugzilla_pr
- —
- date
- 2026-03-27T00:00:00.000Z
This is a minor code cleanup in the phiprop optimization pass. The declaration of the vuse variable within the propagate_with_phi function has been moved to directly precede its usage. This improves code readability by reducing the distance between the declaration and the use of the variable, making the code easier to understand and maintain.