wouldn't elliminate aligment for now

This commit is contained in:
Stanislav Shwartsman 2004-03-03 21:15:19 +00:00
parent 1706beda30
commit 652d4ca24f

View File

@ -218,12 +218,12 @@ int float64_is_signaling_nan(float64);
struct floatx80 { // do not allow 16-byte extension of the structure
Bit16u exp;
Bit64u fraction;
} GCC_ATTRIBUTE((aligned(1), packed));
};
#else
struct floatx80 { // do not allow 16-byte extension of the structure
Bit64u fraction;
Bit16u exp;
} GCC_ATTRIBUTE((aligned(1), packed));
};
#endif
/*----------------------------------------------------------------------------