Changeset 40846 in webkit for trunk/JavaScriptCore/bytecompiler
- Timestamp:
- Feb 10, 2009, 8:57:08 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r40046 r40846 1612 1612 { 1613 1613 #if ENABLE(JIT) 1614 HandlerInfo info = { start->offsetFrom(0), end->offsetFrom(0), instructions().size(), m_dynamicScopeDepth + m_baseScopeDepth, 0};1614 HandlerInfo info = { start->offsetFrom(0), end->offsetFrom(0), instructions().size(), m_dynamicScopeDepth + m_baseScopeDepth, MacroAssembler::CodeLocationLabel() }; 1615 1615 #else 1616 1616 HandlerInfo info = { start->offsetFrom(0), end->offsetFrom(0), instructions().size(), m_dynamicScopeDepth + m_baseScopeDepth }; … … 1745 1745 OffsetLocation location; 1746 1746 location.branchOffset = labels[i]->offsetFrom(switchAddress); 1747 #if ENABLE(JIT)1748 location.ctiOffset = 0;1749 #endif1750 1747 jumpTable.offsetTable.add(clause, location); 1751 1748 }
Note:
See TracChangeset
for help on using the changeset viewer.