Print this page
Implement -fstrict-calling-conventions
Stock GCC is overly willing to violate the ABI when calling local functions,
such that it passes arguments in registers on i386.  This hampers debugging
with anything other than a fully-aware DWARF debugger, and is generally not
something we desire.
Implement a flag which disables this behaviour, enabled by default.  The flag is
global, though only effective on i386, to more easily allow its globalization
later which, given the odds, is likely to be necessary.

*** 1,7 **** /* { dg-do compile } */ ! /* { dg-options "-O2 -funit-at-a-time" } */ /* { dg-final { scan-assembler "magic\[^\\n\]*eax" { target ilp32 } } } */ /* { dg-final { scan-assembler "magic\[^\\n\]*edi" { target lp64 } } } */ /* Verify that local calling convention is used. */ static t(int) __attribute__ ((noinline)); --- 1,8 ---- /* { dg-do compile } */ ! /* { dg-options "-O2 -funit-at-a-time -fno-strict-calling-conventions" { target ilp32 } } */ ! /* { dg-options "-O2 -funit-at-a-time" { target lp64 } } */ /* { dg-final { scan-assembler "magic\[^\\n\]*eax" { target ilp32 } } } */ /* { dg-final { scan-assembler "magic\[^\\n\]*edi" { target lp64 } } } */ /* Verify that local calling convention is used. */ static t(int) __attribute__ ((noinline));