Ignore:
Timestamp:
Sep 6, 2011, 4:36:51 PM (14 years ago)
Author:
[email protected]
Message:

Unreviewed build fix for r94559.

Marked the relevant parameters as unused if !ENABLE(JIT), and surrounded
new out-of-line JIT-specific method definitions with !ENABLE(JIT).

  • bytecode/CodeBlock.cpp:
  • runtime/Executable.cpp:

(JSC::EvalExecutable::compileInternal):
(JSC::ProgramExecutable::compileInternal):
(JSC::FunctionExecutable::compileForCallInternal):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r94559 r94616  
    18681868}
    18691869
     1870#if ENABLE(JIT)
    18701871// FIXME: Implement OSR. If compileOptimized() is called from somewhere other than the
    18711872// epilogue, do OSR from the old code block to the new one.
     
    19251926    return error;
    19261927}
     1928#endif
    19271929
    19281930} // namespace JSC
Note: See TracChangeset for help on using the changeset viewer.