diff options
Diffstat (limited to 'soft-fp/double.h')
-rw-r--r-- | soft-fp/double.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/soft-fp/double.h b/soft-fp/double.h index f6c83d7253..23d11ccf72 100644 --- a/soft-fp/double.h +++ b/soft-fp/double.h @@ -89,7 +89,7 @@ union _FP_UNION_D unsigned exp : _FP_EXPBITS_D; unsigned sign : 1; # endif - } bits __attribute__ ((packed)); + } bits; }; # define FP_DECL_D(X) _FP_DECL (2, X) @@ -210,7 +210,7 @@ union _FP_UNION_D unsigned exp : _FP_EXPBITS_D; unsigned sign : 1; # endif - } bits __attribute__ ((packed)); + } bits; }; # define FP_DECL_D(X) _FP_DECL (1, X) |