blob: ee7b8a4ad88663c3c064b4b62f5157bb5d422857 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { 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));
}