aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/blendv-to-maxmin.c
blob: 042eb7d8f24af70a78c8a06427a1b57f25cc3113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-march=x86-64-v3 -O2 -mfpmath=sse" } */
/* { dg-final { scan-assembler-times "vmaxsd" 1 } } */

double
foo (double a)
{
  if (a > 0.0)
    return a;
  return 0.0;
}