AVR: target/116407 - Fix linker error "relocation truncated to fit".
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr59034-2.c
blob9f6a9dc0e3e7065ede459c2675fa4a2c568bf026
1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-require-effective-target maybe_x32 } */
3 /* { dg-options "-O -mx32 -mtune=corei7 -maddress-mode=long" } */
5 extern int foo(int, ...);
6 int bar(void) {
7 long double l = 1.2345E6;
8 foo(0, l);
9 return 0;