From 1bc7adbd341c3fab88c8d414e9ee42ff69b2b5ee Mon Sep 17 00:00:00 2001 From: xoviat Date: Fri, 29 Dec 2017 15:36:37 -0600 Subject: [PATCH] Fix regression in host-fp-folding --- lib/scutil/host-fp-folding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/scutil/host-fp-folding.c b/lib/scutil/host-fp-folding.c index d68ac048e27..e40b4491609 100644 --- a/lib/scutil/host-fp-folding.c +++ b/lib/scutil/host-fp-folding.c @@ -88,7 +88,7 @@ configure_denormals(bool denorms_are_zeros, bool flush_to_zero) #ifdef _WIN32 unsigned int mxcsr = _mm_getcsr(); #else - unsigned int mxcsr = fenv.__mxcsr + unsigned int mxcsr = fenv.__mxcsr; #endif mxcsr &= ~0x0040; if (denorms_are_zeros)