From: Julian Seward Date: Wed, 16 Jan 2013 09:22:27 +0000 (+0000) Subject: Get rid of a pointless assert, and let the isel fail in the normal X-Git-Tag: svn/VALGRIND_3_9_0^2~152^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=629fc8637dff4981315c828df33a933062995c25;p=thirdparty%2Fvalgrind.git Get rid of a pointless assert, and let the isel fail in the normal way, if it wants to. git-svn-id: svn://svn.valgrind.org/vex/branches/COMEM@2637 --- diff --git a/VEX/priv/host_amd64_isel.c b/VEX/priv/host_amd64_isel.c index f02f72f11b..9063b3fc84 100644 --- a/VEX/priv/host_amd64_isel.c +++ b/VEX/priv/host_amd64_isel.c @@ -3968,10 +3968,7 @@ static void iselStmt ( ISelEnv* env, IRStmt* stmt ) HReg dst = lookupIRTemp(env, d->tmp); addInstr(env, mk_iMOVsd_RR(hregAMD64_RAX(),dst) ); return; - } else { - vassert(0); } - break; }