Ignore:
Timestamp:
Nov 18, 2012, 6:58:46 PM (13 years ago)
Author:
[email protected]
Message:

Unreviewed, build fix for !ENABLE(DFG_JIT).

  • dfg/DFGCommon.h:

(JSC::DFG::shouldShowDisassembly):
(DFG):

File:
1 edited

Legend:

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

    r128084 r135099  
    151151enum CapabilityLevel { CannotCompile, ShouldProfile, CanCompile, CapabilityLevelNotSet };
    152152
     153// Unconditionally disable DFG disassembly support if the DFG is not compiled in.
     154inline bool shouldShowDisassembly()
     155{
     156    return false;
     157}
     158
    153159} } // namespace JSC::DFG
    154160
Note: See TracChangeset for help on using the changeset viewer.