diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 18:06:27 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-23 18:06:27 +0000 |
commit | a04b505dc1a28b95e8673977c76b93235bdc4abf (patch) | |
tree | 44b6777183660f25c856ec98ea7c6a3098fd8129 /target-mips/op.c | |
parent | e3ba214f63a285c29700c166270dfe38a393a826 (diff) | |
download | qemu-a04b505dc1a28b95e8673977c76b93235bdc4abf.tar.gz qemu-a04b505dc1a28b95e8673977c76b93235bdc4abf.tar.bz2 qemu-a04b505dc1a28b95e8673977c76b93235bdc4abf.zip |
Switch MIPS movf/movt to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4545 c046a42c-6fe2-441c-8c8c-71466251a162
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) { |