Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr48389.c
blob2ac18cdbe78b342831465754f6b9e2b33d43d801
1 /* PR middle-end/48389 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -mtune=pentiumpro -Wno-abi" } */
4 /* { dg-require-effective-target ia32 } */
5 typedef float V2SF __attribute__ ((vector_size (128)));
6 V2SF foo (int x, V2SF a)
8 V2SF b = {};
9 if (x & 42)
10 b = a;
11 a += b;
12 return a;