|
From: <sv...@va...> - 2014-10-09 01:19:41
|
Author: petarj
Date: Thu Oct 9 02:19:34 2014
New Revision: 2972
Log:
mips: add a missing break
Add a missing break found by IBM's BEAM checker and reported by Florian.
Modified:
trunk/priv/host_mips_isel.c
Modified: trunk/priv/host_mips_isel.c
==============================================================================
--- trunk/priv/host_mips_isel.c (original)
+++ trunk/priv/host_mips_isel.c Thu Oct 9 02:19:34 2014
@@ -3954,6 +3954,7 @@
addInstr(env, MIPSInstr_Cas(4, old, addr, expd, data, mode64));
}
}
+ return;
/* --------- INSTR MARK --------- */
/* Doesn't generate any executable code ... */
|