Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / local2.c
blobb6d960cbc120d5f06b277bd038c1d2a9e206cf45
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-require-effective-target nonpic } */
4 /* { dg-options "-O2 -funit-at-a-time -fomit-frame-pointer" } */
5 /* { dg-final { scan-assembler-not "sub\[^\\n\]*sp" } } */
7 static __attribute__ ((noinline)) q ();
8 int a;
10 /* This function should not require any stack manipulation
11 for preferred stack bounday. */
12 void
13 e ()
15 if (a)
17 e ();
18 a--;
20 q ();
23 static __attribute__ ((noinline)) q ()