Changeset 203704 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDCEPhase.cpp
- Timestamp:
- Jul 25, 2016, 6:05:43 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDCEPhase.cpp
r203703 r203704 94 94 Node* phi = block->phis[phiIndex]; 95 95 if (!phi->shouldGenerate()) { 96 m_graph. deleteNode(phi);96 m_graph.m_allocator.free(phi); 97 97 block->phis[phiIndex--] = block->phis.last(); 98 98 block->phis.removeLast();
Note:
See TracChangeset
for help on using the changeset viewer.