bitint: Fix up lowering of COMPLEX_EXPR [PR115544]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-div-float.c
blobd73e3d59b8b58cbfa4441fedb94928e253355058
1 /* Verify that overloaded built-ins for vec_div with float
2 inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-options "-mvsx" } */
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_div (x, y);
16 /* { dg-final { scan-assembler-times {\mxvdivsp\M} 1 } } */