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