From 85b5e5bdb654444312acff92dbf43ea8734e79b7 Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Sat, 26 Mar 2011 01:04:07 +0100
Subject: [PATCH 202/396] dl-string.h: remove mips related guard

This can't happen, __mips__ was already checked earlier

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 ldso/include/dl-string.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h
index cb3eeb1..e9a992d 100644
--- a/ldso/include/dl-string.h
+++ b/ldso/include/dl-string.h
@@ -265,8 +265,9 @@ static __always_inline char * _dl_simple_ltoahex(char *local, unsigned long i)
 /* On some arches constant strings are referenced through the GOT.
  * This requires that load_addr must already be defined... */
 #if defined(mc68000)  || defined(__arm__) || defined(__thumb__) || \
-    defined(__mips__) || defined(__sh__)  || defined(__powerpc__) || \
-    defined(__avr32__) || defined(__xtensa__) || defined(__sparc__) || defined(__microblaze__)
+    defined(__sh__)  || defined(__powerpc__) || \
+    defined(__avr32__) || defined(__xtensa__) || defined(__sparc__) || \
+    defined(__microblaze__)
 # define CONSTANT_STRING_GOT_FIXUP(X) \
 	if ((X) < (const char *) load_addr) (X) += load_addr
 # define NO_EARLY_SEND_STDERR
-- 
1.7.0.4

