aboutsummaryrefslogtreecommitdiff
path: root/target-i386/op.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-i386/op.c')
-rw-r--r--target-i386/op.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index d4742a3847..a1e3995168 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -1776,6 +1776,14 @@ void OPPROTO op_fucomi_ST0_FT0(void)
FORCE_RET();
}
+void OPPROTO op_fcmov_ST0_STN_T0(void)
+{
+ if (T0) {
+ ST0 = ST(PARAM1);
+ }
+ FORCE_RET();
+}
+
void OPPROTO op_fadd_ST0_FT0(void)
{
ST0 += FT0;