aboutsummaryrefslogtreecommitdiff
path: root/target-alpha/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-alpha/op.c')
-rw-r--r--target-alpha/op.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/target-alpha/op.c b/target-alpha/op.c
index 51a60c9138..68812a0e56 100644
--- a/target-alpha/op.c
+++ b/target-alpha/op.c
@@ -208,51 +208,6 @@ void OPPROTO op_umulh (void)
}
/* Tests */
-void OPPROTO op_cmpult (void)
-{
- if (T0 < T1)
- T0 = 1;
- else
- T0 = 0;
- RETURN();
-}
-
-void OPPROTO op_cmpule (void)
-{
- if (T0 <= T1)
- T0 = 1;
- else
- T0 = 0;
- RETURN();
-}
-
-void OPPROTO op_cmpeq (void)
-{
- if (T0 == T1)
- T0 = 1;
- else
- T0 = 0;
- RETURN();
-}
-
-void OPPROTO op_cmplt (void)
-{
- if ((int64_t)T0 < (int64_t)T1)
- T0 = 1;
- else
- T0 = 0;
- RETURN();
-}
-
-void OPPROTO op_cmple (void)
-{
- if ((int64_t)T0 <= (int64_t)T1)
- T0 = 1;
- else
- T0 = 0;
- RETURN();
-}
-
void OPPROTO op_cmpbge (void)
{
helper_cmpbge();