Add a new union member to access the exponent and sign of a long double
in a single op. Idea from bde.
This commit is contained in:
parent
dd27822e35
commit
764b848f5d
@ -35,6 +35,11 @@ union IEEEl2bits {
|
||||
unsigned long manh :48;
|
||||
unsigned long manl :64;
|
||||
} bits;
|
||||
struct {
|
||||
unsigned int expsign :16;
|
||||
unsigned long manh :48;
|
||||
unsigned long manl :64;
|
||||
} xbits;
|
||||
};
|
||||
|
||||
#define mask_nbit_l(u) ((void)0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user