openbsd-ports/emulators/qemu/patches/misc-target-i386_op_c
todd 2feda3c1f5 o update to 0.9.1, lots from brad@
o see http://qemu.org/changelog.html for details
o see README.OpenBSD for an intro to qemu on OpenBSD
o disable broken arm host support for now
2008-04-28 22:52:38 +00:00

19 lines
469 B
Plaintext

$OpenBSD: misc-target-i386_op_c,v 1.3 2008/04/28 22:52:38 todd 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)