OSDN Git Service

2006-09-08 Eric Christopher <echristo@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / 20060512-2.c
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)
6 {
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);
11     }
12   return (3 + nested_function (x, y));
13 }