Ignore:
Timestamp:
May 18, 2010, 11:32:30 AM (15 years ago)
Author:
[email protected]
Message:

Fix the interpreter after r59637
https://bugs.webkit.org/show_bug.cgi?id=39287

Reviewed by Darin Adler.

  • runtime/Executable.h:
  • runtime/JSFunction.cpp:

(JSC::JSFunction::JSFunction):
(JSC::JSFunction::getCallData):

  • runtime/JSGlobalData.cpp:
  • runtime/JSGlobalData.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSFunction.cpp

    r59637 r59676  
    7070    UNUSED_PARAM(thunk);
    7171    UNUSED_PARAM(length);
    72     UNUSED_PARAM(func);
    7372    ASSERT_NOT_REACHED();
    7473#endif
     
    127126CallType JSFunction::getCallData(CallData& callData)
    128127{
     128#if ENABLE(JIT)
    129129    if (isHostFunction()) {
    130130        callData.native.function = nativeFunction();
    131131        return CallTypeHost;
    132132    }
     133#endif
    133134    callData.js.functionExecutable = jsExecutable();
    134135    callData.js.scopeChain = scope().node();
Note: See TracChangeset for help on using the changeset viewer.