blob: dd39f3eb59ac55a120cf0f13e6b6d68790ec2102 [file] [log] [blame]
/* Bug 14610 */
/* { dg-do run { target ia64-*-* } } */
extern void abort(void);
volatile __float80 x = 30.0;
int main(void)
{
double d = x;
if (d != 30.0) abort ();
return 0;
}