* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20150327.c
blob373ea6183c3c5b8ec918b2e3a82c80f18eb9bae8
1 int a;
2 int (*b)(), (*c)();
3 int fn1(int p1) {
4 if (a)
5 return 0;
6 if (p1) {
7 c();
8 b();
11 void fn2() { fn1(0); }