From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45463) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aantZ-0003C5-9K for qemu-devel@nongnu.org; Tue, 01 Mar 2016 12:15:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aantU-0007P7-7l for qemu-devel@nongnu.org; Tue, 01 Mar 2016 12:15:37 -0500 Received: from mail.uni-paderborn.de ([131.234.142.9]:42739) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aantU-0007Ou-23 for qemu-devel@nongnu.org; Tue, 01 Mar 2016 12:15:32 -0500 From: Bastian Koppelmann Date: Tue, 1 Mar 2016 18:15:24 +0100 Message-Id: <1456852526-3630-2-git-send-email-kbastian@mail.uni-paderborn.de> In-Reply-To: <1456852526-3630-1-git-send-email-kbastian@mail.uni-paderborn.de> References: <1456852526-3630-1-git-send-email-kbastian@mail.uni-paderborn.de> Subject: [Qemu-devel] [PATCH 1/3] target-tricore: add missing break in insn decode switch stmt List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org After decoding/translating a RRR_DIVIDE type instruction we would simply fall through and would decode/translate another unintended RRR2_MADD instruction. Signed-off-by: Bastian Koppelmann --- target-tricore/translate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-tricore/translate.c b/target-tricore/translate.c index 6d7f553..f028fb9 100644 --- a/target-tricore/translate.c +++ b/target-tricore/translate.c @@ -8632,6 +8632,7 @@ static void decode_32Bit_opc(CPUTriCoreState *env, DisasContext *ctx) break; case OPCM_32_RRR_DIVIDE: decode_rrr_divide(env, ctx); + break; /* RRR2 Format */ case OPCM_32_RRR2_MADD: decode_rrr2_madd(env, ctx); -- 2.7.2