]> git.proxmox.com Git - mirror_qemu.git/commitdiff
target-mips: fix {RD, WR}PGPR in microMIPS
authorYongbok Kim <yongbok.kim@imgtec.com>
Wed, 24 Jun 2015 23:24:13 +0000 (00:24 +0100)
committerLeon Alrae <leon.alrae@imgtec.com>
Fri, 26 Jun 2015 08:09:42 +0000 (09:09 +0100)
rt, rs were swapped

Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
target-mips/translate.c

index 8547e2d04d5299cd0b22c7271a50c6c15a95f59d..02c25232075d795feb15975147b36aeef1cd1cbd 100644 (file)
@@ -13001,12 +13001,12 @@ static void gen_pool32axf (CPUMIPSState *env, DisasContext *ctx, int rt, int rs)
         case RDPGPR:
             check_cp0_enabled(ctx);
             check_insn(ctx, ISA_MIPS32R2);
-            gen_load_srsgpr(rt, rs);
+            gen_load_srsgpr(rs, rt);
             break;
         case WRPGPR:
             check_cp0_enabled(ctx);
             check_insn(ctx, ISA_MIPS32R2);
-            gen_store_srsgpr(rt, rs);
+            gen_store_srsgpr(rs, rt);
             break;
         default:
             goto pool32axf_invalid;