OSDN Git Service

2010-12-30 Kai Tietz <kai.tietz@onevision.com>
[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 -mpreferred-stack-boundary=4" } */
4 int
5 outer_function (int x, int y)
6 {
7   int __attribute__ ((__noinline__))
8   nested_function (int x, int y)
9     {
10       return (x + y);
11     }
12   return (3 + nested_function (x, y));
13 }