Imported Upstream version 4.8.1
[platform/upstream/gcc48.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 }