summaryrefslogtreecommitdiffstats
path: root/target-mips/op.c
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-21 02:02:39 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-21 02:02:39 +0000
commit20c4c97c9b9bcc413371e1b78e7db5306eb7fdd6 (patch)
tree2a2a4298dc879cdf32469deb8d079d9dc98ac516 /target-mips/op.c
parenta4e7dd5267dcc74a3b7a6bd53a7259eb427a32e3 (diff)
downloadhqemu-20c4c97c9b9bcc413371e1b78e7db5306eb7fdd6.zip
hqemu-20c4c97c9b9bcc413371e1b78e7db5306eb7fdd6.tar.gz
Switch MIPS movn/movz to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4506 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op.c')
-rw-r--r--target-mips/op.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/target-mips/op.c b/target-mips/op.c
index c7162d6..80ea364 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))
OpenPOWER on IntegriCloud