PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / ia64 / float80-1.c
blob38e9c870f4e93876077370e06f745d776697f950
1 /* Bug 14610 */
2 /* { dg-do run } */
4 extern void abort(void);
5 volatile __float80 x = 30.0;
7 int main(void)
9 double d = x;
10 if (d != 30.0) abort ();
11 return 0;