summaryrefslogtreecommitdiff
path: root/toolchain/gcc/patches/4.2.0/307-long_double_fix.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2008-12-02 18:32:02 +0000
committerImre Kaloz <kaloz@openwrt.org>2008-12-02 18:32:02 +0000
commit7d78d5cad3da7ecc2374ef73c1d36fc7c4380bd0 (patch)
tree402fe14dacbf4103e3cb5acbeb112e1e3966ea1c /toolchain/gcc/patches/4.2.0/307-long_double_fix.patch
parentd7ed0b8c472cb097db8d64eea3ec33e37a48879d (diff)
downloadmtk-20170518-7d78d5cad3da7ecc2374ef73c1d36fc7c4380bd0.zip
mtk-20170518-7d78d5cad3da7ecc2374ef73c1d36fc7c4380bd0.tar.gz
mtk-20170518-7d78d5cad3da7ecc2374ef73c1d36fc7c4380bd0.tar.bz2
nuke old gcc 4.2 versions
SVN-Revision: 13483
Diffstat (limited to 'toolchain/gcc/patches/4.2.0/307-long_double_fix.patch')
-rw-r--r--toolchain/gcc/patches/4.2.0/307-long_double_fix.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/toolchain/gcc/patches/4.2.0/307-long_double_fix.patch b/toolchain/gcc/patches/4.2.0/307-long_double_fix.patch
deleted file mode 100644
index 1229bdc..0000000
--- a/toolchain/gcc/patches/4.2.0/307-long_double_fix.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Index: gcc-4.2.0/gcc/config/rs6000/darwin-ldouble.c
-===================================================================
---- gcc-4.2.0.orig/gcc/config/rs6000/darwin-ldouble.c 2007-06-28 20:56:39.222667344 +0200
-+++ gcc-4.2.0/gcc/config/rs6000/darwin-ldouble.c 2007-06-28 20:57:02.258165416 +0200
-@@ -49,9 +49,10 @@
-
- This code currently assumes big-endian. */
-
--#if ((!defined (__NO_FPRS__) || defined (_SOFT_FLOAT)) \
-+#if (defined (__LONG_DOUBLE_128__) && \
-+ ((!defined (__NO_FPRS__) || defined (_SOFT_FLOAT)) \
- && !defined (__LITTLE_ENDIAN__) \
-- && (defined (__MACH__) || defined (__powerpc__) || defined (_AIX)))
-+ && (defined (__MACH__) || defined (__powerpc__) || defined (_AIX))))
-
- #define fabs(x) __builtin_fabs(x)
- #define isless(x, y) __builtin_isless (x, y)
-@@ -219,7 +220,7 @@
- return z.ldval;
- }
-
--#if defined (_SOFT_FLOAT) && defined (__LONG_DOUBLE_128__)
-+#ifdef _SOFT_FLOAT
-
- long double __gcc_qneg (double, double);
- int __gcc_qeq (double, double, double, double);