comparison gcc/testsuite/gcc.dg/torture/pr85615.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile } */
2
3 long a, d;
4 int b, c;
5 void fn1()
6 {
7 int e = -1L, f = 2, g = 8;
8 for (;;)
9 {
10 for (; b; g++)
11 ;
12 int i;
13 for (; c;)
14 {
15 i = 5;
16 for (; e >= 1; i--)
17 ;
18 }
19 d = f ?: a;
20 if (d)
21 {
22 e = 0;
23 for (; i;)
24 for (; g < 3; f++)
25 ;
26 }
27 }
28 }