1 /* PR target/36362 */
2 
3 extern void abort (void);
4 
5 int
test(float c)6 test (float c)
7 {
8   return !!c * 7LL == 0;
9 }
10 
11 int
main(void)12 main (void)
13 {
14   if (test (1.0f) != 0)
15     abort ();
16   return 0;
17 }
18