|
From: <sv...@va...> - 2011-06-25 02:30:46
|
Author: florian
Date: 2011-06-25 03:25:41 +0100 (Sat, 25 Jun 2011)
New Revision: 2165
Log:
Get rid of redundant address mode calculation.
Fixes #275710. (Christian Borntraeger <bor...@de...>)
Modified:
trunk/priv/host_s390_isel.c
Modified: trunk/priv/host_s390_isel.c
===================================================================
--- trunk/priv/host_s390_isel.c 2011-06-23 12:00:32 UTC (rev 2164)
+++ trunk/priv/host_s390_isel.c 2011-06-25 02:25:41 UTC (rev 2165)
@@ -244,7 +244,7 @@
static s390_amode *
s390_isel_amode(ISelEnv *env, IRExpr *expr)
{
- s390_amode *am = s390_isel_amode_wrk(env, expr);
+ s390_amode *am;
/* Address computation should yield a 64-bit value */
vassert(typeOfIRExpr(env->type_env, expr) == Ity_I64);
|