summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fenv.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/fenv.cc')
-rwxr-xr-xwinsup/cygwin/fenv.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fenv.cc b/winsup/cygwin/fenv.cc
index 87466365a..30bffcfce 100755
--- a/winsup/cygwin/fenv.cc
+++ b/winsup/cygwin/fenv.cc
@@ -423,7 +423,7 @@ _feinitialise (void)
__asm__ volatile ("cpuid" : "=d" (edx), "+a" (eax) :: "%ecx", "%ebx");
/* If this flag isn't set, or if the OS doesn't support SSE (NT4, at least
up to SP4) we'll avoid trying to execute any SSE. */
- if ((edx & (1 << 25)) != 0 && wincap.supports_sse ())
+ if ((edx & (1 << 25)) != 0)
use_sse = true;
/* Reset FPU: extended prec, all exceptions cleared and masked off. */