From 330875984432c26ef78bad85c4ee9816d3c41ca5 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Wed, 9 Jun 2010 22:09:40 +0200 Subject: [PATCH] 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 --- target-mips/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index ab8f9745fc..d43d72deea 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); } -- 2.11.4.GIT