summaryrefslogtreecommitdiff
path: root/ext/fputils/include
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas@sandberg.pp.se>2013-10-01 15:19:56 +0200
committerAndreas Sandberg <andreas@sandberg.pp.se>2013-10-01 15:19:56 +0200
commit7c52865d1bd63e4b3a4352d6178a391e1b0ed29d (patch)
tree32432ea31bafd089966fbf9e66fa73c5f627c6fb /ext/fputils/include
parentfec2dea5c35d830ab4f4dc5295e6dba0e152f18e (diff)
downloadgem5-7c52865d1bd63e4b3a4352d6178a391e1b0ed29d.tar.xz
ext: Update fputils to rev 52b6190b4e
This changeset updates the external library to git revision 52b6190b4e. This update includes changes that fix compilation errors on old gcc versions and fixes to test a case that affect ICC.
Diffstat (limited to 'ext/fputils/include')
-rw-r--r--ext/fputils/include/fputils/fp80.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/ext/fputils/include/fputils/fp80.h b/ext/fputils/include/fputils/fp80.h
index e584baab4..70acb6cb1 100644
--- a/ext/fputils/include/fputils/fp80.h
+++ b/ext/fputils/include/fputils/fp80.h
@@ -46,14 +46,12 @@ extern "C" {
*/
/** Internal representation of an 80-bit float. */
-typedef struct {
- union {
- char bits[10];
- struct {
- uint64_t fi;
- uint16_t se;
- } repr;
- } u;
+typedef union {
+ char bits[10];
+ struct {
+ uint64_t fi;
+ uint16_t se;
+ } repr;
} fp80_t;
/** Constant representing +inf */