1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_fp_ok }  */
3 /* { dg-add-options arm_fp } */
4 
5 #pragma GCC push_options
6 #pragma GCC target "fpu=crypto-neon-fp-armv8"
7 int a, b;
fn1()8 extern __inline __attribute__((__gnu_inline__)) int fn1() {}
9 
10 #pragma GCC pop_options
11 void
fn2()12 fn2() {
13   if (b * 0.77 + 0.5)
14     a = 0;
15 }
16