Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-abs-floatdouble.c
blob1a08618b367483d304416e572963540e4de0cf9e
1 /* Verify that overloaded built-ins for vec_abs with float and
2 double inputs for VSX produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_vsx_ok } */
6 /* { dg-options "-mvsx -O2" } */
8 #include <altivec.h>
10 vector float
11 test1 (vector float x)
13 return vec_abs (x);
16 vector double
17 test2 (vector double x)
19 return vec_abs (x);
22 /* { dg-final { scan-assembler-times "xvabssp" 1 } } */
23 /* { dg-final { scan-assembler-times "xvabsdp" 1 } } */