]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/fold-compare-7.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / fold-compare-7.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 typedef float vecf __attribute__((vector_size(8*sizeof(float))));
5
6 long f(vecf *f1, vecf *f2){
7 return ((*f1 == *f2) < 0)[2];
8 }