diff options
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); |