aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr95237-5.c
blob: 9dc5cfcd73925e46f7e604b7497807c9967a572c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile { target ia32 } } */
/* { dg-options "-mpreferred-stack-boundary=2 -Os -w" { target { i?86-*-* x86_64-*-* } } } */

int a;

long long __attribute__((noinline))
b (void)
{
}

void
c (void)
{
  if (b())
    a = 1;
}