Changeset 268241 in webkit for trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
- Timestamp:
- Oct 8, 2020, 6:18:14 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
r268170 r268241 156 156 157 157 #define LLINT_CALL_END_IMPL(callFrame, callTarget, callTargetTag) \ 158 LLINT_RETURN_TWO( (retagCodePtr<callTargetTag, SlowPathPtrTag>(callTarget)), (callFrame))158 LLINT_RETURN_TWO(retagCodePtr((callTarget), callTargetTag, SlowPathPtrTag), (callFrame)) 159 159 160 160 #define LLINT_CALL_THROW(globalObject, exceptionToThrow) do { \ … … 1723 1723 } 1724 1724 1725 assertIsTaggedWith <JSEntryPtrTag>(codePtr.executableAddress());1725 assertIsTaggedWith(codePtr.executableAddress(), JSEntryPtrTag); 1726 1726 LLINT_CALL_RETURN(globalObject, calleeFrame, codePtr.executableAddress(), JSEntryPtrTag); 1727 1727 } … … 1766 1766 } 1767 1767 1768 assertIsTaggedWith <JSEntryPtrTag>(codePtr.executableAddress());1768 assertIsTaggedWith(codePtr.executableAddress(), JSEntryPtrTag); 1769 1769 LLINT_CALL_RETURN(globalObject, calleeFrame, codePtr.executableAddress(), JSEntryPtrTag); 1770 1770 }
Note:
See TracChangeset
for help on using the changeset viewer.