From: Stefan Weil Date: Wed, 9 Jun 2010 20:09:40 +0000 (+0200) Subject: target-mips: Fix compilation X-Git-Tag: v0.13.0-rc0~336 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=330875984432c26ef78bad85c4ee9816d3c41ca5;p=qemu.git target-mips: Fix compilation TCGv t1 needs tcg_temp_free instead of tcg_temp_free_i32. Cc: Nathan Froyd Cc: Aurelien Jarno Signed-off-by: Stefan Weil Signed-off-by: Aurelien Jarno --- diff --git a/target-mips/translate.c b/target-mips/translate.c index ab8f9745f..d43d72dee 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -9484,7 +9484,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); }