Changeset 254632 in webkit for trunk/Source/JavaScriptCore/dfg/DFGAvailabilityMap.h
- Timestamp:
- Jan 15, 2020, 1:30:57 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGAvailabilityMap.h
r253896 r254632 67 67 68 68 template<typename HasFunctor, typename AddFunctor> 69 void closeStartingWithLocal( Operand op, const HasFunctor& has, const AddFunctor& add)69 void closeStartingWithLocal(VirtualRegister reg, const HasFunctor& has, const AddFunctor& add) 70 70 { 71 Availability availability = m_locals.operand( op);71 Availability availability = m_locals.operand(reg); 72 72 if (!availability.hasNode()) 73 73 return;
Note:
See TracChangeset
for help on using the changeset viewer.