]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gcc.target/i386/20060512-4.c
cd569108b70cf12296d7515494d6e180215b6fcf
[gcc.git] / gcc / testsuite / gcc.target / i386 / 20060512-4.c
1 /* { dg-do compile { target i?86-*-* } } */
2 /* { dg-options "-mstackrealign" } */
3 int
4 outer_function (int x, int y)
5 {
6 int __attribute__ ((__noinline__))
7 nested_function (int x, int y)
8 { /* { dg-error "-mstackrealign ignored for nested functions" } */
9 return (x + y);
10 }
11 return (3 + nested_function (x, y));
12 }
This page took 0.042358 seconds and 4 git commands to generate.