aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-02-18 10:16:35 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-03-13 23:42:45 +0100
commit4f57f43cb8c2402d5ca552eafac438ea14d584df (patch)
treea14fabd9530059baf6c36ce52714b04a65e49bdb /target
parent21fb03be67fa63670796f7b5d7bcd1194e6a8154 (diff)
target/mips: Rewrite complex ifdef'ry
No need for this obfuscated ifdef'ry, KISS. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210226093111.3865906-4-f4bug@amsat.org>
Diffstat (limited to 'target')
-rw-r--r--target/mips/translate.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/target/mips/translate.c b/target/mips/translate.c
index 0b6d82d228..ceb77a3a7c 100644
--- a/target/mips/translate.c
+++ b/target/mips/translate.c
@@ -28276,13 +28276,16 @@ static bool decode_opc_legacy(CPUMIPSState *env, DisasContext *ctx)
#if defined(TARGET_MIPS64)
if ((ctx->insn_flags & INSN_R5900) && (ctx->insn_flags & ASE_MMI)) {
decode_mmi(env, ctx);
-#else
+ break;
+ }
+#endif
+#if !defined(TARGET_MIPS64)
if (ctx->insn_flags & ASE_MXU) {
decode_opc_mxu(env, ctx);
-#endif
- } else {
- decode_opc_special2_legacy(env, ctx);
+ break;
}
+#endif
+ decode_opc_special2_legacy(env, ctx);
break;
case OPC_SPECIAL3:
#if defined(TARGET_MIPS64)