Ticket #3136: long-double-bug.c

File long-double-bug.c, 93 bytes (added by bhaible, 15 years ago)

source of the test case

Line 
1long double foo (long double x)
2{
3 return x;
4}
5int main ()
6{
7 return foo (0.0L) == 0.0L;
8}