Changeset 183162 in webkit for trunk/Source/JavaScriptCore/dfg/DFGCPSRethreadingPhase.cpp
- Timestamp:
- Apr 22, 2015, 7:36:08 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGCPSRethreadingPhase.cpp
r183094 r183162 195 195 if (otherNode->op() == GetLocal) { 196 196 // Replace all references to this GetLocal with otherNode. 197 node-> replacement = otherNode;197 node->setReplacement(otherNode); 198 198 return; 199 199 } 200 200 201 201 ASSERT(otherNode->op() == SetLocal); 202 node-> replacement = otherNode->child1().node();202 node->setReplacement(otherNode->child1().node()); 203 203 return; 204 204 }
Note:
See TracChangeset
for help on using the changeset viewer.