aboutsummaryrefslogtreecommitdiff
path: root/libgcc/soft-fp/single.h
diff options
context:
space:
mode:
authorKai Tietz <ktietz@redhat.com>2012-03-01 21:50:26 +0100
committerKai Tietz <ktietz@gcc.gnu.org>2012-03-01 21:50:26 +0100
commitb7633ee392220fe7853e23c2c5c3fb4695b0ab24 (patch)
tree9869f6d1412529d8b68ead50817d90b438d922cc /libgcc/soft-fp/single.h
parent5d9dc69aff9b45ad78e4b668855f3879e6fef7df (diff)
downloadgcc-b7633ee392220fe7853e23c2c5c3fb4695b0ab24.zip
gcc-b7633ee392220fe7853e23c2c5c3fb4695b0ab24.tar.gz
gcc-b7633ee392220fe7853e23c2c5c3fb4695b0ab24.tar.bz2
soft-fp: Imported from glibc upstream.
* soft-fp: Imported from glibc upstream. From-SVN: r184760
Diffstat (limited to 'libgcc/soft-fp/single.h')
-rw-r--r--libgcc/soft-fp/single.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/libgcc/soft-fp/single.h b/libgcc/soft-fp/single.h
index 9c3734a..119d0db 100644
--- a/libgcc/soft-fp/single.h
+++ b/libgcc/soft-fp/single.h
@@ -1,6 +1,6 @@
/* Software floating-point emulation.
Definitions for IEEE Single Precision.
- Copyright (C) 1997,1998,1999,2006 Free Software Foundation, Inc.
+ Copyright (C) 1997,1998,1999,2006,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),
@@ -27,9 +27,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
- MA 02110-1301, USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#if _FP_W_TYPE_SIZE < 32
#error "Here's a nickel kid. Go buy yourself a real computer."
@@ -58,7 +57,7 @@ typedef float SFtype __attribute__((mode(SF)));
union _FP_UNION_S
{
SFtype flt;
- struct {
+ struct _FP_STRUCT_LAYOUT {
#if __BYTE_ORDER == __BIG_ENDIAN
unsigned sign : 1;
unsigned exp : _FP_EXPBITS_S;