Revert "build: Fix missing variable quotes"
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-mult-float.c
blobb4e60beebea576a8f75cf0393c9288c59810bd5e
1 /* Verify that overloaded built-ins for vec_mul with float
2 inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-options "-mvsx -O2" } */
6 /* { dg-require-effective-target powerpc_vsx } */
8 #include <altivec.h>
10 vector float
11 test1 (vector float x, vector float y)
13 return vec_mul (x, y);
16 /* { dg-final { scan-assembler-times "\[ \t\]xvmulsp" 1 } } */