* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr40570.c
blob7c3f4d83b2e06b3d2eca1cfef1704a392fb5d2eb
1 extern void anything(int);
3 static int foo(int i);
5 static int bar(int i) { foo(i); }
7 extern int j;
9 static int foo(int i)
11 if (j)
12 anything(j);
13 return bar(i);
16 int baz()
18 foo(0);
19 if (baz())
20 return 1;
21 return 0;