projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aecf137
)
target-mips: Fix compilation
author
Stefan Weil
<weil@mail.berlios.de>
Wed, 9 Jun 2010 20:09:40 +0000
(22:09 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Wed, 9 Jun 2010 21:37:36 +0000
(23:37 +0200)
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>
target-mips/translate.c
patch
|
blob
|
history
diff --git
a/target-mips/translate.c
b/target-mips/translate.c
index ab8f9745fc99d0051f008937cf96f9534beb2d32..d43d72deea1f3a942debdcc0b2a8c1242129784b 100644
(file)
--- 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);
}