Commit f36672ae1966eab1b8d87a01328a0ad1b50df090

Authored by aurel32
1 parent 988d7eaa

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
Showing 1 changed file with 0 additions and 30 deletions
target-sh4/op.c
... ... @@ -55,36 +55,6 @@ void OPPROTO op_cmp_eq_imm_T0(void)
55 55 RETURN();
56 56 }
57 57  
58   -void OPPROTO op_cmd_eq_T0_T1(void)
59   -{
60   - cond_t(T0 == T1);
61   - RETURN();
62   -}
63   -
64   -void OPPROTO op_cmd_hs_T0_T1(void)
65   -{
66   - cond_t((uint32_t) T0 <= (uint32_t) T1);
67   - RETURN();
68   -}
69   -
70   -void OPPROTO op_cmd_ge_T0_T1(void)
71   -{
72   - cond_t((int32_t) T0 <= (int32_t) T1);
73   - RETURN();
74   -}
75   -
76   -void OPPROTO op_cmd_hi_T0_T1(void)
77   -{
78   - cond_t((uint32_t) T0 < (uint32_t) T1);
79   - RETURN();
80   -}
81   -
82   -void OPPROTO op_cmd_gt_T0_T1(void)
83   -{
84   - cond_t((int32_t) T0 < (int32_t) T1);
85   - RETURN();
86   -}
87   -
88 58 void OPPROTO op_not_T0(void)
89 59 {
90 60 T0 = ~T0;
... ...