Changeset 112285 in webkit


Ignore:
Timestamp:
Mar 27, 2012 11:06:21 AM (12 years ago)
Author:
psolanki@apple.com
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  <psolanki@apple.com>
     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  <thouraya.andolsi@st.com>
    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.