Changeset 228438 in webkit


Ignore:
Timestamp:
Feb 13, 2018 3:03:21 PM (6 years ago)
Author:
sbarati@apple.com
Message:

Follup fix to r228411 for 32-bit builds. I missed a place where we used non vararg getter for child2().

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r228436 r228438  
     12018-02-13  Saam Barati  <sbarati@apple.com>
     2
     3        Follup fix to r228411 for 32-bit builds. I missed a place where we used non vararg getter for child2().
     4
     5        * dfg/DFGSpeculativeJIT32_64.cpp:
     6        (JSC::DFG::SpeculativeJIT::compile):
     7
    182018-02-13  Guillaume Emont  <guijemont@igalia.com>
    29
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT32_64.cpp

    r228411 r228438  
    25772577                }
    25782578
    2579                 if (node->child2().useKind() == SymbolUse) {
     2579                if (m_graph.varArgChild(node, 1).useKind() == SymbolUse) {
    25802580                    compileGetByValForObjectWithSymbol(node);
    25812581                    break;
Note: See TracChangeset for help on using the changeset viewer.