diff options
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index 89495b7192..3bb6adfee3 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -460,21 +460,6 @@ void op_dmultu (void) } #endif -/* Conditional moves */ -void op_movf (void) -{ - if (!(env->fpu->fcr31 & PARAM1)) - T0 = T1; - FORCE_RET(); -} - -void op_movt (void) -{ - if (env->fpu->fcr31 & PARAM1) - T0 = T1; - FORCE_RET(); -} - /* CP0 functions */ void op_mfc0_index (void) { |