diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-08-28 18:26:47 +0200 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-08-29 12:06:29 +0200 |
commit | 8d7b4b6efbab8b5286aa9f5948d3e2ce9f98aea5 (patch) | |
tree | d3bc096b1cf314d7c2db4099030dc1eb5b90ae49 | |
parent | 4cbf4b6d00aa27176f1a19b3c739423875d702fe (diff) | |
download | qemu-8d7b4b6efbab8b5286aa9f5948d3e2ce9f98aea5.zip qemu-8d7b4b6efbab8b5286aa9f5948d3e2ce9f98aea5.tar.gz qemu-8d7b4b6efbab8b5286aa9f5948d3e2ce9f98aea5.tar.bz2 |
target/mips: Clean up handling of CP0 register 24
Clean up handling of CP0 register 24.
Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Message-Id: <1567009614-12438-24-git-send-email-aleksandar.markovic@rt-rk.com>
-rw-r--r-- | target/mips/translate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/mips/translate.c b/target/mips/translate.c index 610631f..515d04c 100644 --- a/target/mips/translate.c +++ b/target/mips/translate.c @@ -7406,7 +7406,7 @@ static void gen_mfc0(DisasContext *ctx, TCGv arg, int reg, int sel) break; case CP0_REGISTER_24: switch (sel) { - case 0: + case CP0_REG24__DEPC: /* EJTAG support */ tcg_gen_ld_tl(arg, cpu_env, offsetof(CPUMIPSState, CP0_DEPC)); tcg_gen_ext32s_tl(arg, arg); @@ -8164,7 +8164,7 @@ static void gen_mtc0(DisasContext *ctx, TCGv arg, int reg, int sel) break; case CP0_REGISTER_24: switch (sel) { - case 0: + case CP0_REG24__DEPC: /* EJTAG support */ tcg_gen_st_tl(arg, cpu_env, offsetof(CPUMIPSState, CP0_DEPC)); register_name = "DEPC"; @@ -8895,7 +8895,7 @@ static void gen_dmfc0(DisasContext *ctx, TCGv arg, int reg, int sel) break; case CP0_REGISTER_24: switch (sel) { - case 0: + case CP0_REG24__DEPC: /* EJTAG support */ tcg_gen_ld_tl(arg, cpu_env, offsetof(CPUMIPSState, CP0_DEPC)); register_name = "DEPC"; @@ -9634,7 +9634,7 @@ static void gen_dmtc0(DisasContext *ctx, TCGv arg, int reg, int sel) break; case CP0_REGISTER_24: switch (sel) { - case 0: + case CP0_REG24__DEPC: /* EJTAG support */ tcg_gen_st_tl(arg, cpu_env, offsetof(CPUMIPSState, CP0_DEPC)); register_name = "DEPC"; |