Changeset 39267 in webkit for trunk/JavaScriptCore/jit
- Timestamp:
- Dec 12, 2008, 8:16:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r39266 r39267 1238 1238 #ifndef NDEBUG 1239 1239 // reset this, in order to guard it's use with asserts 1240 m_bytecodeIndex = -1;1240 m_bytecodeIndex = (unsigned)-1; 1241 1241 #endif 1242 1242 } … … 1714 1714 #ifndef NDEBUG 1715 1715 // reset this, in order to guard it's use with asserts 1716 m_bytecodeIndex = -1;1716 m_bytecodeIndex = (unsigned)-1; 1717 1717 #endif 1718 1718 } … … 1740 1740 __ leal_mr(m_codeBlock->m_numCalleeRegisters * sizeof(Register), X86::edi, X86::edx); 1741 1741 slowRegisterFileCheck = jg32(X86::edx, Address(X86::eax, FIELD_OFFSET(RegisterFile, m_end))); 1742 afterRegisterFileCheck = Label(this);1742 afterRegisterFileCheck = MacroAssembler::Label(this); 1743 1743 } 1744 1744 … … 1753 1753 #ifndef NDEBUG 1754 1754 // reset this, in order to guard it's use with asserts 1755 m_bytecodeIndex = -1;1755 m_bytecodeIndex = (unsigned)-1; 1756 1756 #endif 1757 1757 jump(afterRegisterFileCheck);
Note:
See TracChangeset
for help on using the changeset viewer.