Changeset 248472 in webkit
- Timestamp:
- Aug 9, 2019, 1:33:36 PM (7 years ago)
- Location:
- trunk/Source/WebKitLegacy/win
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebKitQuartzCoreAdditions/API/WebKitQuartzCoreAdditions.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKitLegacy/win/ChangeLog
r248462 r248472 1 2019-08-09 Per Arne Vollan <pvollan@apple.com> 2 3 [Win] Remove compiler workaround for VS2013 4 https://bugs.webkit.org/show_bug.cgi?id=200582 5 6 Reviewed by Don Olmstead. 7 8 A VS2013 compiler workaround can be removed now. 9 10 * WebKitQuartzCoreAdditions/API/WebKitQuartzCoreAdditions.cpp: 11 (DllMain): 12 1 13 2019-08-08 Per Arne Vollan <pvollan@apple.com> 2 14 -
trunk/Source/WebKitLegacy/win/WebKitQuartzCoreAdditions/API/WebKitQuartzCoreAdditions.cpp
r224629 r248472 44 44 switch (fdwReason) { 45 45 case DLL_PROCESS_ATTACH: 46 #if defined(_M_X64) || defined(__x86_64__)47 // The VS2013 runtime has a bug where it mis-detects AVX-capable processors48 // if the feature has been disabled in firmware. This causes us to crash49 // in some of the math functions. For now, we disable those optimizations50 // because Microsoft is not going to fix the problem in VS2013.51 // FIXME: http://webkit.org/b/141449: Remove this workaround when we switch to VS2015+.52 _set_FMA3_enable(0);53 #endif54 46 instance = hinstDLL; 55 47 break;
Note:
See TracChangeset
for help on using the changeset viewer.