Commit f157bfe11a63a9cc12106cdfa8d54c599f5541ad

Authored by aurel32
1 parent 20e1fb52

target-mips: optimize gen_mul_vr54xx()

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6933 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 2 deletions
target-mips/translate.c
... ... @@ -2048,8 +2048,8 @@ static void gen_mul_vr54xx (DisasContext *ctx, uint32_t opc,
2048 2048 int rd, int rs, int rt)
2049 2049 {
2050 2050 const char *opn = "mul vr54xx";
2051   - TCGv t0 = tcg_temp_local_new();
2052   - TCGv t1 = tcg_temp_local_new();
  2051 + TCGv t0 = tcg_temp_new();
  2052 + TCGv t1 = tcg_temp_new();
2053 2053  
2054 2054 gen_load_gpr(t0, rs);
2055 2055 gen_load_gpr(t1, rt);
... ...