qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 05/13] target-tricore: Fix mask handling JNZ.T being


From: Bastian Koppelmann
Subject: [Qemu-devel] [PULL 05/13] target-tricore: Fix mask handling JNZ.T being 7 bit long
Date: Sun, 21 Dec 2014 18:47:41 +0000

The mask is actually 7 bit long, instead of 6, so the expression checking
for JNZ.T is always false. Let's make the mask 1 bit wider.

Signed-off-by: Bastian Koppelmann <address@hidden>
---
 target-tricore/translate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/target-tricore/translate.c b/target-tricore/translate.c
index 3d87346..8f9e13e 100644
--- a/target-tricore/translate.c
+++ b/target-tricore/translate.c
@@ -3828,8 +3828,8 @@ static void decode_32Bit_opc(CPUTriCoreState *env, 
DisasContext *ctx)
 
     op1 = MASK_OP_MAJOR(ctx->opcode);
 
-    /* handle JNZ.T opcode only being 6 bit long */
-    if (unlikely((op1 & 0x3f) == OPCM_32_BRN_JTT)) {
+    /* handle JNZ.T opcode only being 7 bit long */
+    if (unlikely((op1 & 0x7f) == OPCM_32_BRN_JTT)) {
         op1 = OPCM_32_BRN_JTT;
     }
 
-- 
2.2.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]