Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20080529-1.c
blobcd429808496857f41c505f820cf53ee6b68b25e6
1 /* PR target/36362 */
3 extern void abort (void);
5 int
6 test (float c)
8 return !!c * 7LL == 0;
11 int
12 main (void)
14 if (test (1.0f) != 0)
15 abort ();
16 return 0;