Changeset 180237 in webkit for trunk/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
- Timestamp:
- Feb 17, 2015, 1:41:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
r179863 r180237 107 107 for (InlineCallFrameSet::iterator iter = m_graph.m_plan.inlineCallFrames->begin(); !!iter; ++iter) { 108 108 InlineCallFrame* inlineCallFrame = *iter; 109 if (! inlineCallFrame->executable->usesArguments())109 if (!m_graph.usesArguments(inlineCallFrame)) 110 110 continue; 111 111 … … 176 176 InlineCallFrame* inlineCallFrame = data.inlineCallFrame; 177 177 178 if ( inlineCallFrame->executable->usesArguments()) {178 if (m_graph.usesArguments(inlineCallFrame)) { 179 179 inlineCallFrame->argumentsRegister = virtualRegisterForLocal( 180 180 allocation[m_graph.argumentsRegisterFor(inlineCallFrame).toLocal()]);
Note:
See TracChangeset
for help on using the changeset viewer.