openbsd-ports/emulators/qemu-old/patches/misc-target-i386_op_c
2010-05-27 17:33:42 +00:00

19 lines
474 B
Plaintext

$OpenBSD: misc-target-i386_op_c,v 1.1.1.1 2010/05/27 17:33:42 fgsch Exp $
--- target-i386/op.c.orig Sun Jan 6 14:38:45 2008
+++ target-i386/op.c Wed Apr 2 01:43:10 2008
@@ -2214,12 +2214,12 @@ void OPPROTO op_fdivr_STN_ST0(void)
/* misc FPU operations */
void OPPROTO op_fchs_ST0(void)
{
- ST0 = floatx_chs(ST0);
+ helper_fchs_ST0();
}
void OPPROTO op_fabs_ST0(void)
{
- ST0 = floatx_abs(ST0);
+ helper_fabs_ST0();
}
void OPPROTO op_fxam_ST0(void)