comparison gcc/testsuite/gcc.dg/vect/pr86858.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 int a, b, c, d;
4 char e(char f, char g) { return f + g; }
5 void h() {
6 for (; c; ++c) {
7 d = 0;
8 for (; d != 8; d = e(d, 3)) {
9 a = b && a;
10 b = c;
11 }
12 }
13 }