Ignore:
Timestamp:
Jul 25, 2016, 6:05:43 PM (9 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r203703.

It breaks some internal tests

Reverted changeset:

"[JSC] DFG::Node should not have its own allocator"
https://bugs.webkit.org/show_bug.cgi?id=160098
http://trac.webkit.org/changeset/203703

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGDCEPhase.cpp

    r203703 r203704  
    9494                Node* phi = block->phis[phiIndex];
    9595                if (!phi->shouldGenerate()) {
    96                     m_graph.deleteNode(phi);
     96                    m_graph.m_allocator.free(phi);
    9797                    block->phis[phiIndex--] = block->phis.last();
    9898                    block->phis.removeLast();
Note: See TracChangeset for help on using the changeset viewer.