comparison gcc/testsuite/gcc.dg/graphite/pr83887.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 /* { dg-options "-O -floop-nest-optimize -fno-tree-loop-im" } */
3
4 int z4, g7;
5
6 void
7 x3 (int my)
8 {
9 while (my < 2)
10 {
11 for (z4 = 0; z4 < 2; ++z4)
12 {
13 }
14
15 if (my != 0)
16 for (g7 = 0; g7 < 2; ++g7)
17 {
18 }
19
20 ++my;
21 }
22 }