Changeset 243867 in webkit
- Timestamp:
- Apr 4, 2019, 7:15:20 AM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/CachedTypes.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r243857 r243867 1 2019-04-04 Tadeu Zagallo <tzagallo@apple.com> 2 3 UnlinkedCodeBlock constructor from cache should initialize m_didOptimize 4 https://bugs.webkit.org/show_bug.cgi?id=196396 5 6 Reviewed by Saam Barati. 7 8 The UnlinkedCodeBlock constructor in CachedTypes was missing the initialization 9 for m_didOptimize, which leads to crashes in CodeBlock::thresholdForJIT. 10 11 * runtime/CachedTypes.cpp: 12 (JSC::UnlinkedCodeBlock::UnlinkedCodeBlock): 13 1 14 2019-04-03 Yusuke Suzuki <ysuzuki@apple.com> 2 15 -
trunk/Source/JavaScriptCore/runtime/CachedTypes.cpp
r243295 r243867 1874 1874 , m_hasTailCalls(cachedCodeBlock.hasTailCalls()) 1875 1875 , m_codeType(cachedCodeBlock.codeType()) 1876 1877 , m_didOptimize(static_cast<unsigned>(MixedTriState)) 1876 1878 1877 1879 , m_features(cachedCodeBlock.features())
Note:
See TracChangeset
for help on using the changeset viewer.