diff options
Diffstat (limited to 'target-i386/op.c')
-rw-r--r-- | target-i386/op.c | 5 |
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) |