2015-05-04 Sandra Loosemore <sandra@codesourcery.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / vmx / ira2c.c
blobbce5469ceaa886e37bc096d2d02912bf0c7a7b23
1 /* { dg-do compile } */
3 double __fabs(double a) { return a; }
4 double __fmadd(double a, double b, double c) { return a*b+c; }
6 double
7 test(double f32a, double f32b, double f32c)
9 f32c = __fabs(f32a);
10 return __fmadd(f32a, f32b, f32c);