Changeset 268241 in webkit for trunk/Source/JavaScriptCore/ftl/FTLOutput.h
- Timestamp:
- Oct 8, 2020, 6:18:14 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLOutput.h
r268170 r268241 396 396 static_assert(!std::is_same<Function, LValue>::value); 397 397 return m_block->appendNew<B3::CCallValue>(m_proc, type, origin(), B3::Effects::none(), 398 constIntPtr(tagCFunctionPtr<void* , OperationPtrTag>(function)), arg1, args...);398 constIntPtr(tagCFunctionPtr<void*>(function, OperationPtrTag)), arg1, args...); 399 399 } 400 400 … … 402 402 // https://bugs.webkit.org/show_bug.cgi?id=184324 403 403 template<typename FunctionType> 404 LValue operation(FunctionType function) { return constIntPtr(tagCFunctionPtr<void* , OperationPtrTag>(function)); }404 LValue operation(FunctionType function) { return constIntPtr(tagCFunctionPtr<void*>(function, OperationPtrTag)); } 405 405 406 406 void jump(LBasicBlock);
Note:
See TracChangeset
for help on using the changeset viewer.