Changeset 179993 in webkit for trunk/Source/JavaScriptCore/testRegExp.cpp
- Timestamp:
- Feb 12, 2015, 9:20:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/testRegExp.cpp
r174455 r179993 1 1 /* 2 * Copyright (C) 2011 Apple Inc. All rights reserved.2 * Copyright (C) 2011, 2015 Apple Inc. All rights reserved. 3 3 * 4 4 * This library is free software; you can redistribute it and/or … … 164 164 { 165 165 #if OS(WINDOWS) 166 #if defined(_M_X64) || defined(__x86_64__) 167 // The VS2013 runtime has a bug where it mis-detects AVX-capable processors 168 // if the feature has been disabled in firmware. This causes us to crash 169 // in some of the math functions. For now, we disable those optimizations 170 // because Microsoft is not going to fix the problem in VS2013. 171 // FIXME: http://webkit.org/b/141449: Remove this workaround when we switch to VS2015+. 172 _set_FMA3_enable(0); 173 #endif 174 166 175 // Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for 167 176 // testing/debugging, as it causes the post-mortem debugger not to be invoked. We reset the
Note:
See TracChangeset
for help on using the changeset viewer.