gcc/gcc/testsuite/gcc.dg/tree-ssa/andnot-2.c

11 lines
263 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-forwprop3-raw -w -Wno-psabi" } */
typedef long vec __attribute__((vector_size(16)));
vec f(vec x){
vec y = x < 10;
return y & (y == 0);
}
/* { dg-final { scan-tree-dump-not "_expr" "forwprop3" } } */