Changeset 125982 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDriver.h
- Timestamp:
- Aug 19, 2012, 2:59:12 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDriver.h
r121073 r125982 42 42 43 43 #if ENABLE(DFG_JIT) 44 bool tryCompile(ExecState*, CodeBlock*, JITCode& );45 bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck );44 bool tryCompile(ExecState*, CodeBlock*, JITCode&, unsigned bytecodeIndex); 45 bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck, unsigned bytecodeIndex); 46 46 #else 47 inline bool tryCompile(ExecState*, CodeBlock*, JITCode& ) { return false; }48 inline bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr& ) { return false; }47 inline bool tryCompile(ExecState*, CodeBlock*, JITCode&, unsigned) { return false; } 48 inline bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr&, unsigned) { return false; } 49 49 #endif 50 50
Note:
See TracChangeset
for help on using the changeset viewer.