diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-11 11:34:39 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-11 11:34:39 +0000 |
commit | add69063e86c1dec66f285687c8bd923269c0c75 (patch) | |
tree | 1b509ef01c326b17a40e3fefd2f6ba99062d1838 /target-mips/helper.h | |
parent | target-mips: fix temporary variable freeing in op_ldst_##insn() (diff) | |
download | qemu-kvm-add69063e86c1dec66f285687c8bd923269c0c75.tar.gz qemu-kvm-add69063e86c1dec66f285687c8bd923269c0c75.tar.bz2 qemu-kvm-add69063e86c1dec66f285687c8bd923269c0c75.zip |
target-mips: fix mft* helpers/call
This patch attempts to fix mft* helpers and the associated TCG calls.
mft* helpers do not take a register in argument, however:
- some helpers are called with an argument while they do not take one.
- some helpers are declared with an argument they don't use.
Acked-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5674 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/helper.h')
-rw-r--r-- | target-mips/helper.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target-mips/helper.h b/target-mips/helper.h index ab62a1f6c..525ccbbf6 100644 --- a/target-mips/helper.h +++ b/target-mips/helper.h @@ -137,11 +137,11 @@ DEF_HELPER(void, do_mtc0_taghi, (target_ulong t0)) DEF_HELPER(void, do_mtc0_datahi, (target_ulong t0)) /* MIPS MT functions */ -DEF_HELPER(target_ulong, do_mftgpr, (target_ulong t0, uint32_t sel)) -DEF_HELPER(target_ulong, do_mftlo, (target_ulong t0, uint32_t sel)) -DEF_HELPER(target_ulong, do_mfthi, (target_ulong t0, uint32_t sel)) -DEF_HELPER(target_ulong, do_mftacx, (target_ulong t0, uint32_t sel)) -DEF_HELPER(target_ulong, do_mftdsp, (target_ulong t0)) +DEF_HELPER(target_ulong, do_mftgpr, (uint32_t sel)) +DEF_HELPER(target_ulong, do_mftlo, (uint32_t sel)) +DEF_HELPER(target_ulong, do_mfthi, (uint32_t sel)) +DEF_HELPER(target_ulong, do_mftacx, (uint32_t sel)) +DEF_HELPER(target_ulong, do_mftdsp, (void)) DEF_HELPER(void, do_mttgpr, (target_ulong t0, uint32_t sel)) DEF_HELPER(void, do_mttlo, (target_ulong t0, uint32_t sel)) DEF_HELPER(void, do_mtthi, (target_ulong t0, uint32_t sel)) |