OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / ia64 / float80-1.c
1 /* Bug 14610 */
2 /* { dg-do run } */
3
4 extern void abort(void);
5 volatile __float80 x = 30.0;
6
7 int main(void)
8 {
9   double d = x;
10   if (d != 30.0) abort ();
11   return 0;
12 }