Changeset 112285 in webkit for trunk/Source/JavaScriptCore


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):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r112192 r112285  
     12012-03-27  Pratik Solanki  <[email protected]>
     2
     3        Compiler warning when JIT is not enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=82352
     5
     6        Reviewed by Filip Pizlo.
     7
     8        * runtime/JSFunction.cpp:
     9        (JSC::JSFunction::create):
     10
    1112012-03-26  Thouraya ANDOLSI  <[email protected]>
    212
  • 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.