Landing: e7fdcf4738f4
Project / Subsystem
gcc / gcc/pdp11-aout
Date
2026-06-09
Author
Martin Jambor
Commit
e7fdcf4738f4e4699022e8ea72776cbc5989de8e
Source
github
Perf win
No
Breaking
No
All attributes
- project
- gcc
- subsystem
- gcc/pdp11-aout
- patch_id
- —
- commit_hash
- e7fdcf4738f4e4699022e8ea72776cbc5989de8e
- source_type
- github
- headline
- Pdp11-aout: Remove invalid conversion and restore build
- tldr
- This patch fixes a build error when cross-compiling GCC for pdp11-aout by correcting a type mismatch.
- author
- Martin Jambor
- outcome
- committed
- performance_win
- false
- breaking_change
- false
- series_id
- —
- series_parts
- []
- tags
-
- • pdp11
- • build-fix
- • cross-compilation
- discussion_id_link
- —
- bugzilla_pr
- —
- date
- 2026-06-09T00:00:00.000Z
When cross-compiling GCC for the pdp11-aout target, a recent change introduced a build failure due to an invalid conversion from int* to unsigned int*. This patch addresses the issue by changing the type of the variable in pdp11_conditional_register_usage from int to unsigned int, restoring the build functionality for this specific target.