From: Petar Jovanovic Date: Thu, 9 Oct 2014 01:19:34 +0000 (+0000) Subject: mips: add a missing break X-Git-Tag: svn/VALGRIND_3_11_0^2~179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=317ca76cd261edd28b34b2f8ff9b449d67d3ec2b;p=thirdparty%2Fvalgrind.git mips: add a missing break Add a missing break found by IBM's BEAM checker and reported by Florian. git-svn-id: svn://svn.valgrind.org/vex/trunk@2972 --- diff --git a/VEX/priv/host_mips_isel.c b/VEX/priv/host_mips_isel.c index fd32ff49ca..c3bbd9a10f 100644 --- a/VEX/priv/host_mips_isel.c +++ b/VEX/priv/host_mips_isel.c @@ -3954,6 +3954,7 @@ static void iselStmt(ISelEnv * env, IRStmt * stmt) addInstr(env, MIPSInstr_Cas(4, old, addr, expd, data, mode64)); } } + return; /* --------- INSTR MARK --------- */ /* Doesn't generate any executable code ... */