summaryrefslogtreecommitdiff
path: root/soft-fp
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp')
-rw-r--r--soft-fp/quad.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/soft-fp/quad.h b/soft-fp/quad.h
index 080139e1ba..33ee4d4b20 100644
--- a/soft-fp/quad.h
+++ b/soft-fp/quad.h
@@ -131,6 +131,9 @@ union _FP_UNION_Q
{
long double flt /* __attribute__((mode(TF))) */ ;
struct {
+ _FP_W_TYPE a, b;
+ } longs;
+ struct {
#if __BYTE_ORDER == __BIG_ENDIAN
unsigned sign : 1;
unsigned exp : _FP_EXPBITS_Q;