Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / ppc-fsel-3.c
blob1d07c528eb11b4e1c0080aa7d66e70e8853ac8ac
1 /* { dg-do compile { target powerpc*-*-* } } */
2 /* { dg-options "-O -mpowerpc-gfxopt" } */
3 /* { dg-final { scan-assembler-not "fsub" } } */
5 /* Check that an fsub isn't generated when no arithmetic was requested;
6 such an fsub might incorrectly set floating-point exception flags. */
8 double foo(double a, double b, double c, double d)
10 return a < b ? c : d;