Changeset 104660 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Jan 10, 2012, 6:54:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r104630 r104660 2557 2557 // block in the blockLinkingTargets list. If it's not then the last block will 2558 2558 // have a lower bytecode index that the one we're about to give to this block. 2559 if (m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_ inlineStackTop->m_blockLinkingTargets.last()!= m_currentIndex) {2559 if (m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_graph.m_blocks[m_inlineStackTop->m_blockLinkingTargets.last()]->bytecodeBegin != m_currentIndex) { 2560 2560 // Make the block linkable. 2561 ASSERT(m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_ inlineStackTop->m_blockLinkingTargets.last()< m_currentIndex);2561 ASSERT(m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_graph.m_blocks[m_inlineStackTop->m_blockLinkingTargets.last()]->bytecodeBegin < m_currentIndex); 2562 2562 m_inlineStackTop->m_blockLinkingTargets.append(m_graph.m_blocks.size() - 1); 2563 2563 }
Note:
See TracChangeset
for help on using the changeset viewer.