diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-28 21:02:19 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-28 21:02:19 +0000 |
commit | ccc9cc5bab6158b70ca333878358a9fbfb149f89 (patch) | |
tree | 4aa2497d87e485e8af937793917ac789e013b297 /target-sh4/op.c | |
parent | f36672ae1966eab1b8d87a01328a0ad1b50df090 (diff) |
SH4: Convert immediate loads to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5098 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/op.c')
-rw-r--r-- | target-sh4/op.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target-sh4/op.c b/target-sh4/op.c index 21b8287de6..a37ff72047 100644 --- a/target-sh4/op.c +++ b/target-sh4/op.c @@ -37,18 +37,6 @@ static inline void cond_t(int cond) clr_t(); } -void OPPROTO op_movl_imm_T0(void) -{ - T0 = (uint32_t) PARAM1; - RETURN(); -} - -void OPPROTO op_movl_imm_T1(void) -{ - T1 = (uint32_t) PARAM1; - RETURN(); -} - void OPPROTO op_cmp_eq_imm_T0(void) { cond_t((int32_t) T0 == (int32_t) PARAM1); |