blob: 8b1f6a7c3a0c946032f8e6b26862ae15b9a8f80a [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target arm_v8_vfp_ok } */
/* { dg-options "-O2 -march=armv8-a -ffast-math" } */
/* { dg-add-options arm_v8_vfp } */
int
foofloat (float x)
{
return __builtin_lroundf (x);
}
/* { dg-final { scan-assembler-times "vcvta.s32.f32\ts\[0-9\]+, s\[0-9\]+" 1 } } */
int
foodouble (double x)
{
return __builtin_lround (x);
}
/* { dg-final { scan-assembler-times "vcvta.s32.f64\ts\[0-9\]+, d\[0-9\]+" 1 } } */