Changeset 188519 in webkit for trunk/Source/JavaScriptCore/dfg/DFGGenerationInfo.h
- Timestamp:
- Aug 16, 2015, 1:13:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGGenerationInfo.h
r183307 r188519 190 190 // their last use; in some cases it may be safe to reuse the same 191 191 // machine register for the result of the operation. 192 bool canReuse()193 { 194 ASSERT(m_useCount); 195 return m_useCount == 1;192 uint32_t useCount() 193 { 194 ASSERT(m_useCount); 195 return m_useCount; 196 196 } 197 197
Note:
See TracChangeset
for help on using the changeset viewer.