Changeset 203923 in webkit for trunk/Source/JavaScriptCore/dfg/DFGMaximalFlushInsertionPhase.cpp
- Timestamp:
- Jul 29, 2016, 3:04:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGMaximalFlushInsertionPhase.cpp
r198364 r203923 79 79 } 80 80 81 if (node-> hasVariableAccessData(m_graph))81 if (node->accessesStack(m_graph)) 82 82 currentBlockAccessData.operand(node->local()) = node->variableAccessData(); 83 83 } … … 111 111 for (unsigned i = 0; i < block->size(); i++) { 112 112 Node* node = block->at(i); 113 if (!node-> hasVariableAccessData(m_graph))113 if (!node->accessesStack(m_graph)) 114 114 continue; 115 115
Note:
See TracChangeset
for help on using the changeset viewer.