From 6640cdc8e51025bf00973ceb9163a7da76a7b6de Mon Sep 17 00:00:00 2001 From: Carl Love Date: Wed, 17 Dec 2014 21:41:58 +0000 Subject: [PATCH] This commit fixes a redundant #if defined line. The define VG_PLAT_USES_PPCTOC is only true for PPC64 big endian, do not need to quailify the #if statement condition of VG_PLAT_USES_PPCTOC with !VGP_ppc64le_linux. There is no associated bugzilla. The fix is in response to an email message. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14822 --- coregrind/m_translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_translate.c b/coregrind/m_translate.c index 225113859a..afbbe52034 100644 --- a/coregrind/m_translate.c +++ b/coregrind/m_translate.c @@ -1326,7 +1326,7 @@ Bool mk_preamble__set_NRADDR_to_nraddr ( void* closureV, IRSB* bb ) Int offB_GPR25 = offsetof(VexGuestMIPS64State, guest_r25); addStmtToIRSB(bb, IRStmt_Put(offB_GPR25, mkU64(closure->readdr))); # endif -# if defined(VG_PLAT_USES_PPCTOC) && !defined(VGP_ppc64le_linux) +# if defined(VG_PLAT_USES_PPCTOC) addStmtToIRSB( bb, IRStmt_Put( -- 2.47.3