Skip to content

Commit

Permalink
Fix regression in host-fp-folding
Browse files Browse the repository at this point in the history
  • Loading branch information
xoviat authored Dec 29, 2017
1 parent 856a96b commit 1bc7adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/scutil/host-fp-folding.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1bc7adb

Please sign in to comment.