Changeset 153115 in webkit for trunk/Source/JavaScriptCore/jit/JITDriver.h
- Timestamp:
- Jul 24, 2013, 8:58:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITDriver.h
r153113 r153115 54 54 55 55 bool dfgCompiled = false; 56 if ( jitType == JITCode::DFGJIT)56 if (JITCode::isOptimizingJIT(jitType)) 57 57 dfgCompiled = DFG::tryCompile(exec, codeBlock.get(), jitCode, bytecodeIndex); 58 58 if (dfgCompiled) { … … 92 92 93 93 bool dfgCompiled = false; 94 if ( jitType == JITCode::DFGJIT)94 if (JITCode::isOptimizingJIT(jitType)) 95 95 dfgCompiled = DFG::tryCompileFunction(exec, codeBlock.get(), jitCode, jitCodeWithArityCheck, bytecodeIndex); 96 96 if (dfgCompiled) {
Note:
See TracChangeset
for help on using the changeset viewer.