From patchwork Wed Jun 9 20:09:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: target-mips: Fix compilation Date: Wed, 09 Jun 2010 10:09:40 -0000 From: Stefan Weil X-Patchwork-Id: 55126 Message-Id: <1276114180-24035-1-git-send-email-weil@mail.berlios.de> To: QEMU Developers Cc: Aurelien Jarno , Nathan Froyd TCGv t1 needs tcg_temp_free instead of tcg_temp_free_i32. Cc: Nathan Froyd Cc: Aurelien Jarno Signed-off-by: Stefan Weil --- target-mips/translate.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index 3473281..940f57c 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -9478,7 +9478,7 @@ static void gen_ldst_multiple (DisasContext *ctx, uint32_t opc, int reglist, } MIPS_DEBUG("%s, %x, %d(%s)", opn, reglist, offset, regnames[base]); tcg_temp_free(t0); - tcg_temp_free_i32(t1); + tcg_temp_free(t1); tcg_temp_free_i32(t2); }