]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/arm/vselnedf.c
[ARM,testsuite] Fix typo in arm_arch_v8a_ok effective target.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / arm / vselnedf.c
CommitLineData
91cb50d2 1/* { dg-do compile } */
a6d1006b 2/* { dg-require-effective-target arm_arch_v8a_ok } */
91cb50d2 3/* { dg-require-effective-target arm_v8_vfp_ok } */
e61c8a5d 4/* { dg-options "-O2 -mcpu=cortex-a57" } */
91cb50d2 5/* { dg-add-options arm_v8_vfp } */
6
7double
8foo (double x, double y)
9{
10 volatile int i = 0;
11 return i != 0 ? x : y;
12}
13
14/* { dg-final { scan-assembler-times "vseleq.f64\td\[0-9\]+" 1 } } */