From: Florian Krohm Date: Thu, 25 Sep 2014 20:33:50 +0000 (+0000) Subject: Remove unneeded variable. X-Git-Tag: svn/VALGRIND_3_11_0^2~190 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c80cab719469864acf9ac770e0b2318540b9bd86;p=thirdparty%2Fvalgrind.git Remove unneeded variable. git-svn-id: svn://svn.valgrind.org/vex/trunk@2961 --- 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) {