diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-03-11 14:46:59 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-03-11 14:46:59 +0000 |
commit | 647c593038ea677c11eafa14a7e234d88ea67c90 (patch) | |
tree | 07f109226eda5c923b87dad635bcf4d8aa5b073c /target-i386 | |
parent | 9540a78b90c9c0240d9054b5b80de8d1a16a489e (diff) |
Add missing FORCE_RET()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1770 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/op.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index 137f5726b0..93cc3c42e9 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -1032,6 +1032,7 @@ void OPPROTO op_aaa(void) } EAX = (EAX & ~0xffff) | al | (ah << 8); CC_SRC = eflags; + FORCE_RET(); } void OPPROTO op_aas(void) @@ -1056,6 +1057,7 @@ void OPPROTO op_aas(void) } EAX = (EAX & ~0xffff) | al | (ah << 8); CC_SRC = eflags; + FORCE_RET(); } void OPPROTO op_daa(void) @@ -1083,6 +1085,7 @@ void OPPROTO op_daa(void) eflags |= parity_table[al]; /* pf */ eflags |= (al & 0x80); /* sf */ CC_SRC = eflags; + FORCE_RET(); } void OPPROTO op_das(void) @@ -1113,6 +1116,7 @@ void OPPROTO op_das(void) eflags |= parity_table[al]; /* pf */ eflags |= (al & 0x80); /* sf */ CC_SRC = eflags; + FORCE_RET(); } /* segment handling */ |