Changeset 62464 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Jul 4, 2010, 4:48:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r62456 r62464 3705 3705 } 3706 3706 ASSERT(!asFunction(callFrame->callee())->isHostFunction()); 3707 int32_t expectedParams = asFunction(callFrame->callee())->jsExecutable()->parameterCount();3708 int32_t inplaceArgs = min(argCount, expectedParams);3709 int32_t i = 0;3707 uint32_t expectedParams = asFunction(callFrame->callee())->jsExecutable()->parameterCount(); 3708 uint32_t inplaceArgs = min(argCount, expectedParams); 3709 uint32_t i = 0; 3710 3710 Register* argStore = callFrame->registers() + argsOffset; 3711 3711 … … 3754 3754 } 3755 3755 Register* argsBuffer = callFrame->registers() + argsOffset; 3756 for ( int32_t i = 0; i < argCount; ++i) {3756 for (uint32_t i = 0; i < argCount; ++i) { 3757 3757 argsBuffer[i] = asObject(arguments)->get(callFrame, i); 3758 3758 CHECK_FOR_EXCEPTION();
Note:
See TracChangeset
for help on using the changeset viewer.