Changeset 45694 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Jul 9, 2009, 8:01:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r45693 r45694 3096 3096 3097 3097 JSValue arguments = callFrame->r(argsOffset).jsValue(); 3098 uint32_t argCount = 0;3098 int32_t argCount = 0; 3099 3099 if (!arguments) { 3100 3100 argCount = (uint32_t)(callFrame->argumentCount()) - 1; … … 3105 3105 goto vm_throw; 3106 3106 } 3107 uint32_t expectedParams = callFrame->callee()->body()->parameterCount();3108 uint32_t inplaceArgs = min(argCount, expectedParams);3109 uint32_t i = 0;3107 int32_t expectedParams = callFrame->callee()->body()->parameterCount(); 3108 int32_t inplaceArgs = min(argCount, expectedParams); 3109 int32_t i = 0; 3110 3110 Register* argStore = callFrame->registers() + argsOffset; 3111 3111
Note:
See TracChangeset
for help on using the changeset viewer.