Add enum for BREAK32

Signed-off-by: Yongbok Kim <yongbok....@imgtec.com>
---
 target-mips/translate.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/target-mips/translate.c b/target-mips/translate.c
index 87d4959..4a47c2d 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -12012,6 +12012,7 @@ enum {
     MODU = 0x7,
 
     /* The following can be distinguished by their lower 6 bits. */
+    BREAK32 = 0x07,
     INS = 0x0c,
     LSA = 0x0f,
     ALIGN = 0x1f,
@@ -13632,7 +13633,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:
-- 
1.7.1


Reply via email to