Module Name: src
Committed By: matt
Date: Mon Jun 27 06:40:27 UTC 2011
Modified Files:
src/lib/libc/arch/mips/softfloat: mips-gcc.h
Log Message:
Fix softfloat for mips*el
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/mips/softfloat/mips-gcc.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/arch/mips/softfloat/mips-gcc.h
diff -u src/lib/libc/arch/mips/softfloat/mips-gcc.h:1.4 src/lib/libc/arch/mips/softfloat/mips-gcc.h:1.5
--- src/lib/libc/arch/mips/softfloat/mips-gcc.h:1.4 Fri Feb 25 11:55:28 2011
+++ src/lib/libc/arch/mips/softfloat/mips-gcc.h Mon Jun 27 06:40:26 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: mips-gcc.h,v 1.4 2011/02/25 11:55:28 pooka Exp $ */
+/* $NetBSD: mips-gcc.h,v 1.5 2011/06/27 06:40:26 matt Exp $ */
/*
-------------------------------------------------------------------------------
@@ -90,11 +90,6 @@
-------------------------------------------------------------------------------
*/
#if defined(SOFTFLOAT_FOR_GCC)
-#if defined(__MIPSEB__)
#define FLOAT64_DEMANGLE(a) (a)
#define FLOAT64_MANGLE(a) (a)
-#else
-#define FLOAT64_DEMANGLE(a) (((a) << 32) | ((a) >> 32))
-#define FLOAT64_MANGLE(a) FLOAT64_DEMANGLE(a)
-#endif
#endif