2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / gcc.target / arm / lround-vcvt_1.c
blob8b1f6a7c3a0c946032f8e6b26862ae15b9a8f80a
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_v8_vfp_ok } */
3 /* { dg-options "-O2 -march=armv8-a -ffast-math" } */
4 /* { dg-add-options arm_v8_vfp } */
6 int
7 foofloat (float x)
9 return __builtin_lroundf (x);
12 /* { dg-final { scan-assembler-times "vcvta.s32.f32\ts\[0-9\]+, s\[0-9\]+" 1 } } */
15 int
16 foodouble (double x)
18 return __builtin_lround (x);
21 /* { dg-final { scan-assembler-times "vcvta.s32.f64\ts\[0-9\]+, d\[0-9\]+" 1 } } */