From 62d2693701c1756264fdf975578cb7f6abd5c1b1 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Mon, 9 Aug 2021 00:28:08 +0200 Subject: [PATCH] msvcrt: Fix x87 FPU status register assignment detection. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51568 Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51579 Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard --- dlls/msvcrt/math.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c index bb450fad01c..efdde8e4afb 100644 --- a/dlls/msvcrt/math.c +++ b/dlls/msvcrt/math.c @@ -35,6 +35,7 @@ * ==================================================== */ +#include #include #include #include @@ -5321,7 +5322,7 @@ static BOOL _setfp( unsigned int *cw, unsigned int cw_mask, if (*cw & _IC_AFFINE) newcw |= 0x1000; } - if (oldsw != newsw && newsw) + if (oldsw != newsw && (newsw & 0x3f)) { struct { WORD control_word; @@ -5338,6 +5339,8 @@ static BOOL _setfp( unsigned int *cw, unsigned int cw_mask, WORD unused5; } fenv; + assert(cw); + __asm__ __volatile__( "fnstenv %0" : "=m" (fenv) ); fenv.control_word = newcw; fenv.status_word = newsw;