aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010206-1.c
blob: 3aa8cad86625ac59de953fbaf497554c71f98b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int foo (void)
{
  int i;
#line 1 "20010206-1.c"
  if (0) i = 1; else i
#line 1 "20010206-1.c"
    = 26;
  return i;
}

int main ()
{
  if (foo () != 26)
    abort ();
  exit (0);
}