]> Git Repo - qemu.git/commitdiff
target-mips: Add enum for BREAK32
authorYongbok Kim <[email protected]>
Fri, 2 Oct 2015 16:50:50 +0000 (17:50 +0100)
committerLeon Alrae <[email protected]>
Thu, 29 Oct 2015 16:16:44 +0000 (16:16 +0000)
Add enum for BREAK32

Signed-off-by: Yongbok Kim <[email protected]>
Reviewed-by: Leon Alrae <[email protected]>
Reviewed-by: Aurelien Jarno <[email protected]>
Signed-off-by: Leon Alrae <[email protected]>
target-mips/translate.c

index a10bfa3a79b4527236345c007376d1ae2eb6502d..3105c7f175dbb1958373cac8d5bd8219e6639280 100644 (file)
@@ -12009,6 +12009,7 @@ enum {
     MODU = 0x7,
 
     /* The following can be distinguished by their lower 6 bits. */
+    BREAK32 = 0x07,
     INS = 0x0c,
     LSA = 0x0f,
     ALIGN = 0x1f,
@@ -13629,7 +13630,7 @@ static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
         case POOL32AXF:
             gen_pool32axf(env, ctx, rt, rs);
             break;
-        case 0x07:
+        case BREAK32:
             generate_exception_end(ctx, EXCP_BREAK);
             break;
         default:
This page took 0.046088 seconds and 4 git commands to generate.