aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/xop-pcmov.c
blob: 75ed433cf00288d919dba1af748337c592283ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Test that the compiler properly optimizes conditional floating point moves
   into the pcmov instruction on XOP systems.  */

/* { dg-do compile { target { ! { ia32 } } } } */
/* { dg-options "-O2 -mxop" } */

extern void exit (int);

double dbl_test (double a, double b, double c, double d)
{
  return (a > b) ? c : d;
}

double dbl_a = 1, dbl_b = 2, dbl_c = 3, dbl_d = 4, dbl_e;

int main()
{
  dbl_e = dbl_test (dbl_a, dbl_b, dbl_c, dbl_d);
  exit (0);
}

/* { dg-final { scan-assembler "vpcmov" } } */