comparison gcc/testsuite/gcc.c-torture/compile/pr90275.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 a, b, c;
2
3 long long d;
4
5 e() {
6
7 char f;
8
9 for (;;) {
10
11 c = a = c ? 5 : 0;
12
13 if (f) {
14
15 b = a;
16
17 f = d;
18
19 }
20
21 (d || b) < (a > e) ?: (b ? 0 : f) || (d -= f);
22
23 }
24
25 }
26
27