Changeset 45138 in webkit for trunk/JavaScriptCore/jit/JITStubCall.h
- Timestamp:
- Jun 24, 2009, 8:07:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubCall.h
r44743 r45138 109 109 { 110 110 #if ENABLE(OPCODE_SAMPLING) 111 ASSERT(m_jit->m_bytecodeIndex != (unsigned)-1);112 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, true);111 if (m_jit->m_bytecodeIndex != (unsigned)-1) 112 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, true); 113 113 #endif 114 114 … … 118 118 119 119 #if ENABLE(OPCODE_SAMPLING) 120 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, false); 120 if (m_jit->m_bytecodeIndex != (unsigned)-1) 121 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, false); 121 122 #endif 122 123
Note:
See TracChangeset
for help on using the changeset viewer.