Changeset 179993 in webkit for trunk/Source/JavaScriptCore/jsc.cpp
- Timestamp:
- Feb 12, 2015, 9:20:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jsc.cpp
r179479 r179993 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012, 2013 Apple Inc. All rights reserved.3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012, 2013, 2015 Apple Inc. All rights reserved. 4 4 * Copyright (C) 2006 Bjoern Graf ([email protected]) 5 5 * … … 1170 1170 #endif 1171 1171 1172 #if OS(WINDOWS) 1172 #if OS(WINDOWS) && (defined(_M_X64) || defined(__x86_64__)) 1173 // The VS2013 runtime has a bug where it mis-detects AVX-capable processors 1174 // if the feature has been disabled in firmware. This causes us to crash 1175 // in some of the math functions. For now, we disable those optimizations 1176 // because Microsoft is not going to fix the problem in VS2013. 1177 // FIXME: http://webkit.org/b/141449: Remove this workaround when we switch to VS2015+. 1178 _set_FMA3_enable(0); 1179 1173 1180 // Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for 1174 1181 // 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.