blob: 7021b99ad7fde1f5852fb08732451726696d112c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
extern void abort();
typedef union {
struct {
unsigned int hi;
unsigned int lo;
} i;
double d;
} hexdouble;
static const double twoTo52 = 0x1.0p+52;
void func ( double x )
{
hexdouble argument;
register double y, z;
unsigned int xHead;
argument.d = x;
xHead = argument.i.hi & 0x7fffffff;
if (__builtin_expect(!!(xHead < 0x43300000u), 1))
{
y = ( x - twoTo52 ) + twoTo52;
if ( y != x )
abort();
z = x - 0.5;
y = ( z - twoTo52 ) + twoTo52;
if ( y == (( x - twoTo52 ) + twoTo52) )
abort();
}
return;
}
int main()
{
if (sizeof (double) == 4)
return 0;
func((double)1.00);
return 0;
}
|