Changeset 101283 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Nov 28, 2011, 2:48:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r100883 r101283 2044 2044 cachedFunction.clear(); 2045 2045 2046 if (jitType == JITCode::DFGJIT) { 2047 #if ENABLE(DFG_JIT) 2048 repatchBuffer.relink(callReturnLocation, operationGetMethodOptimize); 2049 #else 2050 ASSERT_NOT_REACHED(); 2051 #endif 2052 } else { 2053 ASSERT(jitType == JITCode::BaselineJIT); 2054 repatchBuffer.relink(callReturnLocation, cti_op_get_by_id_method_check); 2055 } 2046 ASSERT_UNUSED(jitType, jitType == JITCode::BaselineJIT); 2047 2048 repatchBuffer.relink(callReturnLocation, cti_op_get_by_id_method_check); 2056 2049 } 2057 2050
Note:
See TracChangeset
for help on using the changeset viewer.