blob: 9acd5e25958b834d52c5b94c336f0b904b5a8270 [file] [log] [blame]
extern void link_error ();
void foo(double x)
{
if (x > __builtin_inf())
link_error ();
}
int main ()
{
foo (1.0);
return 0;
}