|
From: <sv...@va...> - 2014-12-17 21:42:06
|
Author: carll
Date: Wed Dec 17 21:41:58 2014
New Revision: 14822
Log:
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.
Modified:
trunk/coregrind/m_translate.c
Modified: trunk/coregrind/m_translate.c
==============================================================================
--- trunk/coregrind/m_translate.c (original)
+++ trunk/coregrind/m_translate.c Wed Dec 17 21:41:58 2014
@@ -1326,7 +1326,7 @@
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(
|