aboutsummaryrefslogtreecommitdiff
path: root/target-mips
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2010-06-19 11:11:10 +0200
committerAurelien Jarno <aurelien@aurel32.net>2010-06-29 23:26:34 +0200
commitaa8f40090ab94877b49a256069077e1476607e35 (patch)
treefe0c5795fc89bc859f4f7b007860fa3e0a1d1608 /target-mips
parent15656e09cda3f3f3f89bfde3657227f72f0a9130 (diff)
target-mips: enable movn/movz on loongson 2E & 2F
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-mips')
-rw-r--r--target-mips/translate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c
index d43d72deea..8531d6cc12 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -11350,7 +11350,8 @@ static void decode_opc (CPUState *env, DisasContext *ctx, int *is_branch)
break;
case OPC_MOVN: /* Conditional move */
case OPC_MOVZ:
- check_insn(env, ctx, ISA_MIPS4 | ISA_MIPS32);
+ check_insn(env, ctx, ISA_MIPS4 | ISA_MIPS32 |
+ INSN_LOONGSON2E | INSN_LOONGSON2F);
gen_cond_move(env, op1, rd, rs, rt);
break;
case OPC_ADD ... OPC_SUBU: