comparison gcc/testsuite/gcc.dg/pr83922.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-options "-O -ftree-vectorize" } */
2
3 int j4;
4
5 void
6 k1 (int ak)
7 {
8 while (ak < 1)
9 {
10 int ur;
11
12 for (ur = 0; ur < 2; ++ur)
13 {
14 ++j4;
15 if (j4 != 0)
16 j4 = 0;
17 }
18
19 ++ak;
20 }
21 }