blob: cd429808496857f41c505f820cf53ee6b68b25e6 [file] [log] [blame]
/* PR target/36362 */
extern void abort (void);
int
test (float c)
{
return !!c * 7LL == 0;
}
int
main (void)
{
if (test (1.0f) != 0)
abort ();
return 0;
}