aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2022-12-19 14:20:36 +0100
committerJakub Jelinek <jakub@redhat.com>2022-12-19 15:00:08 +0100
commit158b18ffa510105b239bd2f4a253ed33e21fcebc (patch)
treed8dd3dbd311c57cace1ee868efa6207c03f0d03d /gcc/rust
parenta9f6a2b7f579b684037eaddab97db35096c10c3b (diff)
downloadgcc-158b18ffa510105b239bd2f4a253ed33e21fcebc.zip
gcc-158b18ffa510105b239bd2f4a253ed33e21fcebc.tar.gz
gcc-158b18ffa510105b239bd2f4a253ed33e21fcebc.tar.bz2
modula2: Fix up bootstrap on powerpc64le-linux [PR108147]
As mentioned in the PR, bootstrap with m2 enabled currently fails on powerpc64le-linux, we get weird ICE after printing some diagnostics. The problem is that mc creates from *.def prototypes like extern void m2linemap_WarningAtf (m2linemap_location_t location, void * message); but the actual function definitions use void m2linemap_WarningAtf (m2linemap_location_t location, void * message, ...) { code } and on powerpc64le-linux such lying about the prototype results in wrong-code, on the caller side we assume the function isn't varargs and so don't reserve 64 bytes in the frame for it, while the callee relies on the area being reserved and stores into it. Fixed by adding non-stdarg wrappers around stdarg functions (because we want va_list and pass it to diagnostics functions). 2022-12-19 Jakub Jelinek <jakub@redhat.com> PR modula2/108147 * gm2-gcc/m2linemap.def (ErrorAtf, WarningAtf, NoteAtf): Comment out prototypes with varargs. * gm2-gcc/m2linemap.h (m2linemap_ErrorAtf, m2linemap_WarningAtf, m2linemap_NoteAtf): No longer varargs. * gm2-gcc/m2linemap.cc (m2linemap_ErrorAtf): Turned into a non-varargs wrapper around ... (m2linemap_ErrorAtf_1): ... this. New static function. (m2linemap_WarningAtf): Turned into a non-varargs wrapper around ... (m2linemap_WarningAtf_1): ... this. New static function. (m2linemap_NoteAtf): Turned into a non-varargs wrapper around ... (m2linemap_NoteAtf_1): ... this. New static function.
Diffstat (limited to 'gcc/rust')
0 files changed, 0 insertions, 0 deletions