Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 20060512-4.c
blobf2dd26486b62ff9d9ef61b3a6bb28b8c0dff685a
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-mstackrealign" } */
4 int
5 outer_function (int x, int y)
7 int __attribute__ ((__noinline__))
8 nested_function (int x, int y)
9 { /* { dg-warning "-mstackrealign ignored for nested functions" } */
10 return (x + y);
12 return (3 + nested_function (x, y));