summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/API/tests/testapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/API/tests/testapi.c')
-rw-r--r--Source/JavaScriptCore/API/tests/testapi.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/JavaScriptCore/API/tests/testapi.c b/Source/JavaScriptCore/API/tests/testapi.c
index cbf9daf18..7f7ee7d5c 100644
--- a/Source/JavaScriptCore/API/tests/testapi.c
+++ b/Source/JavaScriptCore/API/tests/testapi.c
@@ -1117,15 +1117,6 @@ static void checkConstnessInJSObjectNames()
int main(int argc, char* argv[])
{
#if OS(WINDOWS)
-#if defined(_M_X64) || defined(__x86_64__)
- // The VS2013 runtime has a bug where it mis-detects AVX-capable processors
- // if the feature has been disabled in firmware. This causes us to crash
- // in some of the math functions. For now, we disable those optimizations
- // because Microsoft is not going to fix the problem in VS2013.
- // FIXME: http://webkit.org/b/141449: Remove this workaround when we switch to VS2015+.
- _set_FMA3_enable(0);
-#endif
-
// Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for
// testing/debugging, as it causes the post-mortem debugger not to be invoked. We reset the
// error mode here to work around Cygwin's behavior. See <http://webkit.org/b/55222>.