Changeset 109863 in webkit for trunk/Source/JavaScriptCore/jit/JIT.h
- Timestamp:
- Mar 5, 2012, 10:54:23 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.h
r109307 r109863 255 255 static CodeRef compileCTINativeCall(JSGlobalData* globalData, NativeFunction func) 256 256 { 257 if (!globalData->canUseJIT()) 257 if (!globalData->canUseJIT()) { 258 #if ENABLE(LLINT) 259 return CodeRef::createLLIntCodeRef(llint_native_call_trampoline); 260 #else 258 261 return CodeRef(); 262 #endif 263 } 259 264 JIT jit(globalData, 0); 260 265 return jit.privateCompileCTINativeCall(globalData, func);
Note:
See TracChangeset
for help on using the changeset viewer.