]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
SH4: remove unused ops
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 28 Aug 2008 21:02:08 +0000 (21:02 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 28 Aug 2008 21:02:08 +0000 (21:02 +0000)
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5097 c046a42c-6fe2-441c-8c8c-71466251a162

target-sh4/op.c

index 54a5c7b6a87b58bf96607f1c59a4a6eeceb67e66..21b8287de6bff0e6107472f12a6ed95339048d3e 100644 (file)
@@ -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;