vect: Fix vect_reduction_def check for odd/even widen mult [PR116142]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr92241.c
blob331d03b3d449e7e5a47b1e093c9c65c6bc933853
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize" } */
4 int a, b;
5 char c[2];
6 void d() {
7 char e;
8 for (; b; b--) {
9 e = 0;
10 for (; e <= 1; e++)
11 a &= c[b + e] && 1;