[committed][RISC-V] Fix test expectations after recent late-combine changes
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-bool-cmp-2.c
blob1fb57ff945e73e43182c399410c00ebc8d7e7d59
1 /* { dg-do compile } */
3 void
4 f (_Bool *restrict x, _Bool *restrict y)
6 for (int i = 0; i < 128; ++i)
7 x[i] = x[i] == y[i];
10 /* { dg-final { scan-tree-dump "loop vectorized" "vect" { target vect_bool_cmp } } } */