Changeset 176506 in webkit
- Timestamp:
- Nov 22, 2014, 11:07:26 AM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bytecode/ComplexGetStatus.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r176479 r176506 1 2014-11-21 Michael Saboff <msaboff@apple.com> 2 3 r176455: ASSERT(!m_vector.isEmpty()) in IntendedStructureChain.cpp(143) 4 https://bugs.webkit.org/show_bug.cgi?id=139000 5 6 Reviewed by Darin Adler. 7 8 Check that the chainCount is non-zero before using a StructureChain. 9 10 * bytecode/ComplexGetStatus.cpp: 11 (JSC::ComplexGetStatus::computeFor): 12 1 13 2014-11-21 Michael Saboff <msaboff@apple.com> 2 14 -
trunk/Source/JavaScriptCore/bytecode/ComplexGetStatus.cpp
r173797 r176506 47 47 result.m_kind = Inlineable; 48 48 49 if (chain ) {49 if (chain && chainCount) { 50 50 result.m_chain = adoptRef(new IntendedStructureChain( 51 51 profiledBlock, headStructure, chain, chainCount));
Note:
See TracChangeset
for help on using the changeset viewer.