aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/pr46316.c
blob: 7aafaa740ba9732651cdf01079c6a73302d5f04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern void abort (void);

long long __attribute__((noinline,noclone))
foo (long long t)
{
  while (t > -4)
    t -= 2;

  return t;
}

int main(void)
{
  if (foo (0) != -4)
    abort ();
  return 0;
}