Changeset 199710 in webkit for trunk/Source/JavaScriptCore/assembler/LinkBuffer.h
- Timestamp:
- Apr 18, 2016, 11:54:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/LinkBuffer.h
r197816 r199710 145 145 } 146 146 147 void link( JumpListlist, CodeLocationLabel label)148 { 149 for ( unsigned i = 0; i < list.m_jumps.size(); ++i)150 link( list.m_jumps[i], label);147 void link(const JumpList& list, CodeLocationLabel label) 148 { 149 for (const Jump& jump : list.jumps()) 150 link(jump, label); 151 151 } 152 152
Note:
See TracChangeset
for help on using the changeset viewer.