From 22987ae5e9849512edc912ef6b63645bc9f8af1a Mon Sep 17 00:00:00 2001 From: ths Date: Sat, 16 Dec 2006 16:45:18 +0000 Subject: [PATCH] Fix erraneous fallthrough in MIPS trap implementation, thanks Atsushi Nemoto. --- target-mips/translate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-mips/translate.c b/target-mips/translate.c index 64f7d7565..c9cbc9dad 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -1276,6 +1276,7 @@ static void gen_trap (DisasContext *ctx, uint32_t opc, GEN_LOAD_REG_TN(T1, rt); cond = 1; } + break; case OPC_TEQI: case OPC_TGEI: case OPC_TGEIU: -- 2.39.5