2007-05-23 H.J. Lu <hongjiu.lu@intel.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 20060512-2.c
blob7e6f38e61971837de2b53de0e113582da52cef95
1 /* { dg-do compile { target i?86-*-* } } */
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));