From f157bfe11a63a9cc12106cdfa8d54c599f5541ad Mon Sep 17 00:00:00 2001 From: aurel32 Date: Sun, 29 Mar 2009 01:18:24 +0000 Subject: [PATCH] target-mips: optimize gen_mul_vr54xx() Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6933 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-mips/translate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index f1ec9356a1..b023120626 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -2048,8 +2048,8 @@ static void gen_mul_vr54xx (DisasContext *ctx, uint32_t opc, int rd, int rs, int rt) { const char *opn = "mul vr54xx"; - TCGv t0 = tcg_temp_local_new(); - TCGv t1 = tcg_temp_local_new(); + TCGv t0 = tcg_temp_new(); + TCGv t1 = tcg_temp_new(); gen_load_gpr(t0, rs); gen_load_gpr(t1, rt);