Ignore:
Timestamp:
Jan 15, 2020, 1:30:57 PM (5 years ago)
Author:
[email protected]
Message:

Revert bytecode checkpoints since it breaks watch
https://bugs.webkit.org/show_bug.cgi?id=206301

Unreviewed, revert.

File:
1 edited

Legend:

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

    r253896 r254632  
    6666void AvailabilityMap::pruneByLiveness(Graph& graph, CodeOrigin where)
    6767{
    68     Operands<Availability> localsCopy(OperandsLike, m_locals, Availability::unavailable());
     68    Operands<Availability> localsCopy(m_locals.numberOfArguments(), m_locals.numberOfLocals(), Availability::unavailable());
    6969    graph.forAllLiveInBytecode(
    7070        where,
    71         [&] (Operand reg) {
     71        [&] (VirtualRegister reg) {
    7272            localsCopy.operand(reg) = m_locals.operand(reg);
    7373        });
Note: See TracChangeset for help on using the changeset viewer.