Changeset 38287 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 10, 2008, 9:22:55 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r38286 r38287 1 2008-11-10 Cameron Zwarich <[email protected]> 2 3 Reviewed by Sam Weinig. 4 5 Remove the unused labels member variable of CodeBlock. 6 7 * VM/CodeBlock.h: 8 * VM/LabelID.h: 9 (JSC::LabelID::setLocation): 10 1 11 2008-11-10 Gavin Barraclough <[email protected]> 2 12 -
trunk/JavaScriptCore/VM/CodeBlock.h
r38249 r38287 358 358 Vector<SimpleJumpTable> characterSwitchJumpTables; 359 359 Vector<StringJumpTable> stringSwitchJumpTables; 360 361 HashSet<unsigned, DefaultHash<unsigned>::Hash, WTF::UnsignedWithZeroKeyHashTraits<unsigned> > labels;362 360 363 361 #if ENABLE(CTI) -
trunk/JavaScriptCore/VM/LabelID.h
r38133 r38287 56 56 m_codeBlock->instructions[j].u.operand = m_location - j; 57 57 } 58 59 m_codeBlock->labels.add(location);60 58 } 61 59
Note:
See TracChangeset
for help on using the changeset viewer.