aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/local2.c
blob: 23cd37cef7f29e481b2492565837d586462b7bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do compile } */
/* { dg-options "-O2 -funit-at-a-time -fomit-frame-pointer" } */
/* { dg-skip-if "PR 25214" { ilp32 } { "-fpic" "-fPIC" } { "" } } */
/* { dg-final { scan-assembler-not "sub\[^\\n\]*sp" } } */

static __attribute__ ((noinline)) q ();
int a;

/* This function should not require any stack manipulation
   for preferred stack bounday.  */
void
e ()
{
  if (a)
  {
    e ();
    a--;
  }
  q ();
}

static __attribute__ ((noinline)) q ()
{
}