Ignore:
Timestamp:
Jul 9, 2009, 8:01:23 PM (16 years ago)
Author:
[email protected]
Message:

Build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/interpreter/Interpreter.cpp

    r45693 r45694  
    30963096       
    30973097        JSValue arguments = callFrame->r(argsOffset).jsValue();
    3098         uint32_t argCount = 0;
     3098        int32_t argCount = 0;
    30993099        if (!arguments) {
    31003100            argCount = (uint32_t)(callFrame->argumentCount()) - 1;
     
    31053105                goto vm_throw;
    31063106            }
    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;
    31103110            Register* argStore = callFrame->registers() + argsOffset;
    31113111
Note: See TracChangeset for help on using the changeset viewer.