|
From: <sv...@va...> - 2014-09-25 20:34:01
|
Author: florian
Date: Thu Sep 25 20:33:50 2014
New Revision: 2961
Log:
Remove unneeded variable.
Modified:
trunk/priv/host_s390_defs.c
Modified: trunk/priv/host_s390_defs.c
==============================================================================
--- trunk/priv/host_s390_defs.c (original)
+++ trunk/priv/host_s390_defs.c Thu Sep 25 20:33:50 2014
@@ -8727,7 +8727,6 @@
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 @@
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) {
|