comparison gcc/testsuite/gcc.dg/vect/pr86871.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 extern int b[];
4 extern int c[];
5 void g(int f) {
6 for (; f; f++) {
7 int d = 0;
8 for (int e = -1; e <= 1; e++) {
9 int a = f + e;
10 if (a)
11 d = *(c + a);
12 }
13 *(b + f) = d;
14 }
15 }