aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/ia64/float80-1.c
blob: 38e9c870f4e93876077370e06f745d776697f950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Bug 14610 */
/* { dg-do run } */

extern void abort(void);
volatile __float80 x = 30.0;

int main(void)
{
  double d = x;
  if (d != 30.0) abort ();
  return 0;
}