diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-28 21:02:08 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-28 21:02:08 +0000 |
commit | f36672ae1966eab1b8d87a01328a0ad1b50df090 (patch) | |
tree | 62ab3439ac3ae3ae4c58b103e4482b0aa7c3735a /target-sh4 | |
parent | 988d7eaa7ba97795a55cc5ebf884335afa53b607 (diff) |
SH4: remove unused ops
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5097 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/op.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/target-sh4/op.c b/target-sh4/op.c index 54a5c7b6a8..21b8287de6 100644 --- a/target-sh4/op.c +++ b/target-sh4/op.c @@ -55,36 +55,6 @@ void OPPROTO op_cmp_eq_imm_T0(void) RETURN(); } -void OPPROTO op_cmd_eq_T0_T1(void) -{ - cond_t(T0 == T1); - RETURN(); -} - -void OPPROTO op_cmd_hs_T0_T1(void) -{ - cond_t((uint32_t) T0 <= (uint32_t) T1); - RETURN(); -} - -void OPPROTO op_cmd_ge_T0_T1(void) -{ - cond_t((int32_t) T0 <= (int32_t) T1); - RETURN(); -} - -void OPPROTO op_cmd_hi_T0_T1(void) -{ - cond_t((uint32_t) T0 < (uint32_t) T1); - RETURN(); -} - -void OPPROTO op_cmd_gt_T0_T1(void) -{ - cond_t((int32_t) T0 < (int32_t) T1); - RETURN(); -} - void OPPROTO op_not_T0(void) { T0 = ~T0; |