summaryrefslogtreecommitdiff
path: root/soft-fp/quad.h
diff options
context:
space:
mode:
authorKai Tietz <ktietz@redhat.com>2012-03-01 16:22:09 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-03-01 16:22:09 +0000
commitf775c276fd1f89cc9d561db0890a356e7d6e50b8 (patch)
treee9c1f14c5d7a5fa8534879736c46e492b2220994 /soft-fp/quad.h
parent9ea559e401aefe0528600270b62d52195f1347eb (diff)
soft-fp: Support using struct layout attributes on bit-fields.
Diffstat (limited to 'soft-fp/quad.h')
-rw-r--r--soft-fp/quad.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/quad.h b/soft-fp/quad.h
index ea70138790..b05bd2dba9 100644
--- a/soft-fp/quad.h
+++ b/soft-fp/quad.h
@@ -1,6 +1,6 @@
/* Software floating-point emulation.
Definitions for IEEE Quad Precision.
- Copyright (C) 1997,1998,1999,2006,2007 Free Software Foundation, Inc.
+ Copyright (C) 1997,1998,1999,2006,2007,2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com),
Jakub Jelinek (jj@ultra.linux.cz),
@@ -66,7 +66,7 @@ typedef float TFtype __attribute__((mode(TF)));
union _FP_UNION_Q
{
TFtype flt;
- struct
+ struct _FP_STRUCT_LAYOUT
{
#if __BYTE_ORDER == __BIG_ENDIAN
unsigned sign : 1;
@@ -170,10 +170,10 @@ union _FP_UNION_Q
union _FP_UNION_Q
{
TFtype flt /* __attribute__((mode(TF))) */ ;
- struct {
+ struct _FP_STRUCT_LAYOUT {
_FP_W_TYPE a, b;
} longs;
- struct {
+ struct _FP_STRUCT_LAYOUT {
#if __BYTE_ORDER == __BIG_ENDIAN
unsigned sign : 1;
unsigned exp : _FP_EXPBITS_Q;