comparison gcc/testsuite/gcc.dg/graphite/pr83963.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 mg, et;
5
6 void
7 s5 (int is)
8 {
9 if (is == 0)
10 {
11 g6:
12 ++is;
13 }
14
15 while (mg < 1)
16 {
17 while (et < 1)
18 {
19 if (is == 0)
20 return;
21
22 ++et;
23 }
24
25 while (mg < 1)
26 ++mg;
27 }
28
29 goto g6;
30 }
31