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