Ignore:
Timestamp:
Nov 18, 2012, 7:38:18 PM (13 years ago)
Author:
[email protected]
Message:

Try to fix the DFG build after r135099.

  • dfg/DFGCommon.h:

(JSC::DFG::shouldShowDisassembly):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGCommon.h

    r135099 r135103  
    136136enum OptimizationFixpointState { BeforeFixpoint, FixpointNotConverged, FixpointConverged };
    137137
    138 inline bool shouldShowDisassembly()
    139 {
    140     return Options::showDisassembly() || Options::showDFGDisassembly();
    141 }
    142 
    143138} } // namespace JSC::DFG
    144139
     
    154149inline bool shouldShowDisassembly()
    155150{
     151#if ENABLE(DFG_JIT)
     152    return Options::showDisassembly() || Options::showDFGDisassembly();
     153#else
    156154    return false;
     155#endif
    157156}
    158157
Note: See TracChangeset for help on using the changeset viewer.