Changeset 104630 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Jan 10, 2012, 2:08:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r103981 r104630 54 54 , m_constant1(UINT_MAX) 55 55 , m_constants(codeBlock->numberOfConstantRegisters()) 56 , m_numArguments(codeBlock-> m_numParameters)56 , m_numArguments(codeBlock->numParameters()) 57 57 , m_numLocals(codeBlock->m_numCalleeRegisters) 58 58 , m_preservedVars(codeBlock->m_numVars) … … 2479 2479 inlineCallFrame.callee.set(*byteCodeParser->m_globalData, byteCodeParser->m_codeBlock->ownerExecutable(), callee); 2480 2480 inlineCallFrame.caller = byteCodeParser->currentCodeOrigin(); 2481 inlineCallFrame.arguments.resize(codeBlock-> m_numParameters); // Set the number of arguments including this, but don't configure the value recoveries, yet.2481 inlineCallFrame.arguments.resize(codeBlock->numParameters()); // Set the number of arguments including this, but don't configure the value recoveries, yet. 2482 2482 inlineCallFrame.isCall = isCall(kind); 2483 2483 byteCodeParser->m_codeBlock->inlineCallFrames().append(inlineCallFrame);
Note:
See TracChangeset
for help on using the changeset viewer.