Changeset 62766 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- Jul 8, 2010, 12:50:54 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r62612 r62766 3777 3777 // Then we copy any additional arguments that may be further up the stack ('-1' to account for 'this') 3778 3778 for (; i < static_cast<int32_t>(argCount); i++) 3779 argStore[i] = callFrame->registers()[i - RegisterFile::CallFrameHeaderSize - expectedParams - argCount- 1];3779 argStore[i] = callFrame->registers()[i - RegisterFile::CallFrameHeaderSize - expectedParams - static_cast<int32_t>(argCount) - 1]; 3780 3780 } else if (!arguments.isUndefinedOrNull()) { 3781 3781 if (!arguments.isObject()) {
Note:
See TracChangeset
for help on using the changeset viewer.