aboutsummaryrefslogtreecommitdiff
path: root/target-i386/op.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-02-21 20:23:59 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-02-21 20:23:59 +0000
commit0b9dc5e4c3b96a1e41ab7d660ba2ee2a83380e09 (patch)
tree495b54460180ad0d01eada35eec9b3163829cf62 /target-i386/op.c
parent194884dd6f1fee4d4c41f74649e98af04ad6f83a (diff)
loop insn fix for non x86 hosts
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1305 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r--target-i386/op.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index 933595da65..fed0fca93c 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -1366,6 +1366,11 @@ void OPPROTO op_set_cc_op(void)
CC_OP = PARAM1;
}
+void OPPROTO op_mov_T0_cc(void)
+{
+ T0 = cc_table[CC_OP].compute_all();
+}
+
/* XXX: clear VIF/VIP in all ops ? */
void OPPROTO op_movl_eflags_T0(void)