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/DFGConstantFoldingPhase.cpp

    r254252 r254632  
    384384                // GCSE removes the access entirely.
    385385                if (inlineCallFrame) {
    386                     if (index >= static_cast<unsigned>(inlineCallFrame->argumentCountIncludingThis - 1))
     386                    if (index >= inlineCallFrame->argumentCountIncludingThis - 1)
    387387                        break;
    388388                } else {
     
    405405                }
    406406               
    407                 if (inlineCallFrame && !inlineCallFrame->isVarargs() && index < static_cast<unsigned>(inlineCallFrame->argumentCountIncludingThis - 1)) {
     407                if (inlineCallFrame && !inlineCallFrame->isVarargs() && index < inlineCallFrame->argumentCountIncludingThis - 1) {
    408408                    node->convertToGetStack(data);
    409409                    eliminated = true;
Note: See TracChangeset for help on using the changeset viewer.