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

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* PR optimization/12260. */
2
3 extern int f(void);
4 extern int g(int);
5
6 static char buf[512];
7 void h(int l) {
8 while (l) {
9 char *op = buf;
10 if (f() == 0)
11 break;
12 if (g(op - buf + 1))
13 break;
14 }
15 }