diff options
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index c7162d6850..80ea364bd1 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -510,20 +510,6 @@ void op_dmultu (void) #endif /* Conditional moves */ -void op_movn (void) -{ - if (T1 != 0) - env->gpr[env->current_tc][PARAM1] = T0; - FORCE_RET(); -} - -void op_movz (void) -{ - if (T1 == 0) - env->gpr[env->current_tc][PARAM1] = T0; - FORCE_RET(); -} - void op_movf (void) { if (!(env->fpu->fcr31 & PARAM1)) |