summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authordavem <davem@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-04 07:13:38 +0000
committerdavem <davem@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-04 07:13:38 +0000
commitb60608ad25efd1154e8605ceb1f67dca113c423d (patch)
treea1dd4e956dd8140bd84639a04230c21d279ac22e /gcc
parent6d27b6f600677a10a6e7d7d86902baca90a6a28e (diff)
downloadgcc-b60608ad25efd1154e8605ceb1f67dca113c423d.tar.gz
2002-04-03 David S. Miller <davem@redhat.com>
* config/sparc/crtfastmath.c (FPRS_NS): Delete bogus little-endian handling. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51840 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/sparc/crtfastmath.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7446680e97c..19e3f44b0d2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-03 David S. Miller <davem@redhat.com>
+
+ * config/sparc/crtfastmath.c (FPRS_NS): Delete bogus little-endian
+ handling.
+
2002-04-03 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa-linux.h (INCOMING_RETURN_ADDR_RTX): Move.
diff --git a/gcc/config/sparc/crtfastmath.c b/gcc/config/sparc/crtfastmath.c
index d0100d78ab5..df3f907bb33 100644
--- a/gcc/config/sparc/crtfastmath.c
+++ b/gcc/config/sparc/crtfastmath.c
@@ -32,11 +32,7 @@
* the executable file might be covered by the GNU General Public License.
*/
-#if defined (__LITTLE_ENDIAN__) || defined(__LITTLE_ENDIAN_DATA__)
-#define FPRS_NS (1 << 14) /* Non-Standard fpu results */
-#else
#define FPRS_NS (1 << 22) /* Non-Standard fpu results */
-#endif
static void __attribute__((constructor))
set_fast_math (void)