aboutsummaryrefslogtreecommitdiffstats
path: root/target-mips
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2010-06-09 22:09:40 +0200
committerAurelien Jarno <aurelien@aurel32.net>2010-06-09 23:37:36 +0200
commit330875984432c26ef78bad85c4ee9816d3c41ca5 (patch)
tree58f1ee9520ec649508b0c1c71cc0809a8691855a /target-mips
parentaecf13769852a4e14b51e8403860b18871826298 (diff)
target-mips: Fix compilation
TCGv t1 needs tcg_temp_free instead of tcg_temp_free_i32. Cc: Nathan Froyd <froydnj@codesourcery.com> Cc: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-mips')
-rw-r--r--target-mips/translate.c2
1 files changed, 1 insertions, 1 deletions
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);
}