blob: dd39f3eb59ac55a120cf0f13e6b6d68790ec2102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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;
}
|