aboutsummaryrefslogtreecommitdiff
path: root/target-sparc/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-sparc/op.c')
-rw-r--r--target-sparc/op.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c
index 7042047107..e57a60d357 100644
--- a/target-sparc/op.c
+++ b/target-sparc/op.c
@@ -554,21 +554,6 @@ void OPPROTO op_tsub_T1_T0_ccTV(void)
FORCE_RET();
}
-void OPPROTO op_andn_T1_T0(void)
-{
- T0 &= ~T1;
-}
-
-void OPPROTO op_orn_T1_T0(void)
-{
- T0 |= ~T1;
-}
-
-void OPPROTO op_xnor_T1_T0(void)
-{
- T0 ^= ~T1;
-}
-
void OPPROTO op_umul_T1_T0(void)
{
uint64_t res;