aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20031208-1.c
blob: 02586dfe1c0a7b9be9326ac8ec5ec6bf7b450dbc (plain)
1
2
3
4
5
6
extern int foo(int, ...);
int bar(void) {
  long double l = 1.2345E6;
  foo(0, l);
  return 0;
}