blob: bf769379977fb1d88fc628a15b9b1418df14a2b5 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-mstackrealign -mpreferred-stack-boundary=4" } */
int
outer_function (int x, int y)
{
int __attribute__ ((__noinline__))
nested_function (int x, int y)
{
return (x + y);
}
return (3 + nested_function (x, y));
}