]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr68766.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr68766.c
CommitLineData
dc9604d4
IE
1/* { dg-do compile } */
2/* { dg-options "-O2 -ftree-vectorize -fdbg-cnt=vect_loop:1" } */
3/* { dg-additional-options "-mavx2" { target { i?86-*-* x86_64-*-* } } } */
4/* { dg-prune-output "dbg_cnt 'vect_loop' set to 1" } */
5
6int a, b, g, h;
7int c[58];
8int d[58];
9int fn1() {
10 for (; g; g++)
11 if (a)
12 c[g] = b;
13}
14
15int fn2() {
16 fn1();
17 for (; h; h++)
18 d[h] = 0;
19}