aboutsummaryrefslogtreecommitdiffstats
path: root/target-sparc/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-sparc/op.c')
-rw-r--r--target-sparc/op.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c
index ee5b08c02..eadd1fd41 100644
--- a/target-sparc/op.c
+++ b/target-sparc/op.c
@@ -215,11 +215,6 @@ void OPPROTO op_add_T1_T0_cc(void)
FORCE_RET();
}
-void OPPROTO op_addx_T1_T0(void)
-{
- T0 += T1 + FLAG_SET(PSR_CARRY);
-}
-
void OPPROTO op_addx_T1_T0_cc(void)
{
target_ulong src1;
@@ -413,11 +408,6 @@ void OPPROTO op_sub_T1_T0_cc(void)
FORCE_RET();
}
-void OPPROTO op_subx_T1_T0(void)
-{
- T0 -= T1 + FLAG_SET(PSR_CARRY);
-}
-
void OPPROTO op_subx_T1_T0_cc(void)
{
target_ulong src1;
@@ -1184,17 +1174,6 @@ void OPPROTO op_eval_brgez(void)
}
#endif
-void OPPROTO op_mov_pc_npc(void)
-{
- env->pc = env->npc;
-}
-
-void OPPROTO op_next_insn(void)
-{
- env->pc = env->npc;
- env->npc = env->npc + 4;
-}
-
void OPPROTO op_jmp_label(void)
{
GOTO_LABEL_PARAM(1);