* cfghooks.c (verify_flow_info): Disable check that all probabilities
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-madd-double.c
blob0fe78241294c8d8bbe009dd934eaab051933050f
1 /* Verify that overloaded built-ins for vec_madd with
2 double inputs 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 double
11 testd_l (vector double vd2, vector double vd3, vector double vd4)
13 return vec_madd (vd2, vd3, vd4);
16 /* { dg-final { scan-assembler-times "xvmaddmdp|xvmaddadp" 1 } } */