OSDN Git Service

* gcc.target/i386/pr34256.c: Update number of mov insns
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / 20060512-4.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-mstackrealign" } */
4 int
5 outer_function (int x, int y)
6 {
7   int __attribute__ ((__noinline__))
8   nested_function (int x, int y)
9     { /* { dg-warning "-mstackrealign ignored for nested functions" } */
10       return (x + y);
11     }
12   return (3 + nested_function (x, y));
13 }