Changeset 135103 in webkit for trunk/Source/JavaScriptCore/dfg/DFGCommon.h
- Timestamp:
- Nov 18, 2012, 7:38:18 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGCommon.h
r135099 r135103 136 136 enum OptimizationFixpointState { BeforeFixpoint, FixpointNotConverged, FixpointConverged }; 137 137 138 inline bool shouldShowDisassembly()139 {140 return Options::showDisassembly() || Options::showDFGDisassembly();141 }142 143 138 } } // namespace JSC::DFG 144 139 … … 154 149 inline bool shouldShowDisassembly() 155 150 { 151 #if ENABLE(DFG_JIT) 152 return Options::showDisassembly() || Options::showDFGDisassembly(); 153 #else 156 154 return false; 155 #endif 157 156 } 158 157
Note:
See TracChangeset
for help on using the changeset viewer.