Ignore:
Timestamp:
Mar 27, 2012, 11:06:21 AM (13 years ago)
Author:
[email protected]
Message:

Compiler warning when JIT is not enabled
https://bugs.webkit.org/show_bug.cgi?id=82352

Reviewed by Filip Pizlo.

  • runtime/JSFunction.cpp:

(JSC::JSFunction::create):

File:
1 edited

Legend:

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

    r111739 r112285  
    6363{
    6464    NativeExecutable* executable;
    65 #if ENABLE(JIT)
     65#if !ENABLE(JIT)
     66    UNUSED_PARAM(intrinsic);
     67#else
    6668    if (intrinsic != NoIntrinsic && exec->globalData().canUseJIT()) {
    6769        ASSERT(nativeConstructor == callHostFunctionAsConstructor);
Note: See TracChangeset for help on using the changeset viewer.