From 317ca76cd261edd28b34b2f8ff9b449d67d3ec2b Mon Sep 17 00:00:00 2001 From: Petar Jovanovic Date: Thu, 9 Oct 2014 01:19:34 +0000 Subject: [PATCH] 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 --- VEX/priv/host_mips_isel.c | 1 + 1 file changed, 1 insertion(+) 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 ... */ -- 2.47.2