comparison gcc/testsuite/gcc.dg/torture/pr87645.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 typedef unsigned a[8];
4 a b, g;
5 int c, d, e, f;
6 int h() {
7 unsigned i = 2;
8 for (; i < 8; i++)
9 b[i] = 0;
10 for (; f;) {
11 d = 1;
12 for (; d < 14; d += 3) {
13 e = 0;
14 for (; e < 8; e++) {
15 i = 2;
16 for (; i < 8; i++)
17 b[i] = 5 - (c - g[e] + b[i]);
18 }
19 }
20 }
21 }