aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/ppc-fsel-1.c
blob: 8d364352ac9834a9e08cef1f7f20a99049704d24 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-O -mpowerpc-gfxopt -fno-trapping-math" } */
/* { dg-final { scan-assembler "fsel" } } */

/* If the user doesn't care about signals, fsel can be used in many cases.  */

double foo(double a, double b, double c, double d)
{
  return a < b ? c : d;
}