Module Name: src
Committed By: matt
Date: Wed Jun 1 06:28:00 UTC 2011
Modified Files:
src/lib/libc/arch/mips/softfloat [matt-nb5-mips64]: mips-gcc.h
Log Message:
Kill a section copied from arm-gcc.h. MIPS is "normal" (well, more normal)
than ARM for FP.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 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.1.2.2 src/lib/libc/arch/mips/softfloat/mips-gcc.h:1.1.2.3
--- src/lib/libc/arch/mips/softfloat/mips-gcc.h:1.1.2.2 Fri Apr 29 07:48:34 2011
+++ src/lib/libc/arch/mips/softfloat/mips-gcc.h Wed Jun 1 06:28:00 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: mips-gcc.h,v 1.1.2.2 2011/04/29 07:48:34 matt Exp $ */
+/* mips-gcc.h,v 1.1.2.2 2011/04/29 07:48:34 matt Exp */
/*
-------------------------------------------------------------------------------
@@ -85,16 +85,10 @@
/*
-------------------------------------------------------------------------------
-The MIPS FPA is odd in that it stores doubles high-order word first, no matter
-what the endianness of the CPU. VFP is sane.
+The MIPS FP is sane.
-------------------------------------------------------------------------------
*/
#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