Changeset 129948 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Sep 28, 2012, 1:57:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r129713 r129948 228 228 nodeIndex = nodePtr->child1().index(); 229 229 230 return injectLazyOperandSpeculation(addToGraph(GetLocal, OpInfo(nodePtr->variableAccessData()), nodeIndex)); 230 NodeIndex newGetLocal = injectLazyOperandSpeculation( 231 addToGraph(GetLocal, OpInfo(nodePtr->variableAccessData()), nodeIndex)); 232 m_currentBlock->variablesAtTail.local(operand) = newGetLocal; 233 return newGetLocal; 231 234 } 232 235
Note:
See TracChangeset
for help on using the changeset viewer.