diff options
author | Nick Clifton <nickc@redhat.com> | 2008-04-24 11:26:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-04-24 11:26:41 +0000 |
commit | 51bef6a9c6fb80b8a452a1414adbdf9f3aef7f61 (patch) | |
tree | 1fc66c68fc225495368074d083762c65888c7cef | |
parent | fb09b156d08a7a0764048f9957a4b888469a97a9 (diff) | |
download | cygnal-51bef6a9c6fb80b8a452a1414adbdf9f3aef7f61.tar.gz cygnal-51bef6a9c6fb80b8a452a1414adbdf9f3aef7f61.tar.bz2 cygnal-51bef6a9c6fb80b8a452a1414adbdf9f3aef7f61.zip |
* libc/include/machine/ieeefp.h: Fix typo: _DOUBLE_IS_32_BITS
should be _DOUBLE_IS_32BITS.
-rw-r--r-- | newlib/ChangeLog | 10 | ||||
-rw-r--r-- | newlib/libc/include/machine/ieeefp.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index abf89297f..8ce345e28 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2008-04-24 Nick Clifton <nickc@redhat.com> + + * libc/include/machine/ieeefp.h: Fix typo: _DOUBLE_IS_32_BITS + should be _DOUBLE_IS_32BITS. + 2008-04-24 Corinna Vinschen <corinna@vinschen.de> * libc/include/sys/stat.h (UTIME_NOW): Define for Cygwin. @@ -33,6 +38,11 @@ (mkfifoat): Ditto. (mknodat): Ditto. +2008-04-22 Nick Clifton <nickc@redhat.com> + + * libc/machine/arm/setjmp.S: Add support for thumb2 multiple + register load/store instructions. + 2008-04-16 Patrick Mansfield <patmans@us.ibm.com> * libc/machine/spu/sys/errno.h: Use _impure_data, not _reent_data. diff --git a/newlib/libc/include/machine/ieeefp.h b/newlib/libc/include/machine/ieeefp.h index b7f0b0d2f..9384a8781 100644 --- a/newlib/libc/include/machine/ieeefp.h +++ b/newlib/libc/include/machine/ieeefp.h @@ -38,7 +38,7 @@ whereby multiple words of an IEEE floating point are in big endian order, but the words themselves are little endian with respect to the bytes. - _DOUBLE_IS_32_BITS + _DOUBLE_IS_32BITS This is used on platforms that support double by using the 32-bit IEEE float type. |