From c80cab719469864acf9ac770e0b2318540b9bd86 Mon Sep 17 00:00:00 2001 From: Florian Krohm Date: Thu, 25 Sep 2014 20:33:50 +0000 Subject: [PATCH] Remove unneeded variable. git-svn-id: svn://svn.valgrind.org/vex/trunk@2961 --- VEX/priv/host_s390_defs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/VEX/priv/host_s390_defs.c b/VEX/priv/host_s390_defs.c index 9b18f46507..dce27f9b08 100644 --- a/VEX/priv/host_s390_defs.c +++ b/VEX/priv/host_s390_defs.c @@ -8727,7 +8727,6 @@ s390_insn_helper_call_emit(UChar *buf, const s390_insn *insn) s390_cc_t cond; ULong target; UChar *ptmp = buf; - UChar *bufIN = buf; s390_helper_call *helper_call = insn->variant.helper_call.details; cond = helper_call->cond; @@ -8741,7 +8740,7 @@ s390_insn_helper_call_emit(UChar *buf, const s390_insn *insn) register(s) in the case where the call doesn't happen. If this ever becomes necessary, maybe copy code from the ARM equivalent. Until that day, just give up. */ - return bufIN; /* To denote failure. */ + return buf; /* To denote failure. */ } if (cond != S390_CC_ALWAYS) { -- 2.47.2