Changeset 117823 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDriver.h
- Timestamp:
- May 21, 2012, 3:32:40 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDriver.h
r105579 r117823 27 27 #define DFGDriver_h 28 28 29 #include "CallFrame.h" 29 30 #include <wtf/Platform.h> 30 31 … … 39 40 40 41 #if ENABLE(DFG_JIT) 41 bool tryCompile( JSGlobalData&, CodeBlock*, JITCode&);42 bool tryCompileFunction( JSGlobalData&, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck);42 bool tryCompile(ExecState*, CodeBlock*, JITCode&); 43 bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck); 43 44 #else 44 inline bool tryCompile( JSGlobalData&, CodeBlock*, JITCode&) { return false; }45 inline bool tryCompileFunction( JSGlobalData&, CodeBlock*, JITCode&, MacroAssemblerCodePtr&) { return false; }45 inline bool tryCompile(ExecState*, CodeBlock*, JITCode&) { return false; } 46 inline bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr&) { return false; } 46 47 #endif 47 48
Note:
See TracChangeset
for help on using the changeset viewer.