Changeset 36482 in webkit for trunk/JavaScriptCore/VM/Machine.cpp


Ignore:
Timestamp:
Sep 15, 2008, 11:06:23 PM (17 years ago)
Author:
[email protected]
Message:

Coding style cleanup.

RS=Sam

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/Machine.cpp

    r36480 r36482  
    302302}
    303303
    304 static bool NEVER_INLINE resolve_skip(ExecState* exec, Instruction* vPC, Register* r, ScopeChainNode* scopeChain, CodeBlock* codeBlock, JSValue*& exceptionValue)
     304static bool NEVER_INLINE resolveSkip(ExecState* exec, Instruction* vPC, Register* r, ScopeChainNode* scopeChain, CodeBlock* codeBlock, JSValue*& exceptionValue)
    305305{
    306306    int dst = (vPC + 1)->u.operand;
     
    22542254         value to register dst. If the property is not found, raises an exception.
    22552255         */
    2256         if (UNLIKELY(!resolve_skip(exec, vPC, r, scopeChain, codeBlock, exceptionValue)))
     2256        if (UNLIKELY(!resolveSkip(exec, vPC, r, scopeChain, codeBlock, exceptionValue)))
    22572257            goto vm_throw;
    22582258
Note: See TracChangeset for help on using the changeset viewer.