Changeset 158308 in webkit


Ignore:
Timestamp:
Oct 30, 2013 1:22:40 PM (10 years ago)
Author:
fpizlo@apple.com
Message:

Unreviewed, fix Windows.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::jettison):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r158307 r158308  
     12013-10-30  Filip Pizlo  <fpizlo@apple.com>
     2
     3        Unreviewed, fix Windows.
     4
     5        * bytecode/CodeBlock.cpp:
     6        (JSC::CodeBlock::jettison):
     7
    182013-10-30  Filip Pizlo  <fpizlo@apple.com>
    29
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r158304 r158308  
    28102810void CodeBlock::jettison(ReoptimizationMode mode)
    28112811{
     2812#if ENABLE(DFG_JIT)
    28122813    if (DFG::shouldShowDisassembly()) {
    28132814        dataLog("Jettisoning ", *this);
     
    28552856    if (DFG::shouldShowDisassembly())
    28562857        dataLog("    Did install baseline version of ", *this, "\n");
     2858#else // ENABLE(DFG_JIT)
     2859    UNREACHABLE_FOR_PLATFORM();
     2860#endif // ENABLE(DFG_JIT)
    28572861}
    28582862#endif
Note: See TracChangeset for help on using the changeset viewer.