OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20031208-1.c
1 extern int foo(int, ...);
2 int bar(void) {
3   long double l = 1.2345E6;
4   foo(0, l);
5   return 0;
6 }