comparison gcc/testsuite/gcc.c-torture/compile/20150327.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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();
9 }
10 }
11 void fn2() { fn1(0); }