blob: a769f2e4577c8b4c524d83b19cfaa5688072a123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do compile } */
/* { dg-require-effective-target arm_cpu_cortex_a57_ok } */
/* { dg-require-effective-target arm_v8_vfp_ok } */
/* { dg-options "-O2" } */
/* { dg-add-options arm_cpu_cortex_a57 } */
/* { dg-add-options arm_v8_vfp } */
double
foo (double x, double y)
{
volatile int i = 0;
return i >= 0 ? x : y;
}
/* { dg-final { scan-assembler-times "vselge.f64\td\[0-9\]+" 1 } } */
|