Changeset 40813 in webkit for trunk/JavaScriptCore/jit/JITCall.cpp
- Timestamp:
- Feb 10, 2009, 12:43:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITCall.cpp
r40562 r40813 53 53 } 54 54 55 void JIT::linkCall(JSFunction* callee, CodeBlock* calleeCodeBlock, void*ctiCode, CallLinkInfo* callLinkInfo, int callerArgCount)55 void JIT::linkCall(JSFunction* callee, CodeBlock* calleeCodeBlock, JITCode ctiCode, CallLinkInfo* callLinkInfo, int callerArgCount) 56 56 { 57 57 // Currently we only link calls with the exact number of arguments. … … 62 62 63 63 DataLabelPtr::patch(callLinkInfo->hotPathBegin, callee); 64 Jump::patch(callLinkInfo->hotPathOther, ctiCode );64 Jump::patch(callLinkInfo->hotPathOther, ctiCode.addressForCall()); 65 65 } 66 66
Note:
See TracChangeset
for help on using the changeset viewer.