OSDN Git Service

Target Hook to issue diagnostics for AltiVec argument to funtion
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / ia64-float80-1.c
1 /* Bug 14610 */
2 /* { dg-do run { target ia64-*-* } } */
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 }