Changeset 39077 in webkit for trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
- Timestamp:
- Dec 6, 2008, 8:20:56 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
r39070 r39077 59 59 UNUSED_PARAM(propertyAccessInstructionIndex); 60 60 #endif 61 ASSERT(m_codeBlock->propertyAccessInstruction s[propertyAccessInstructionIndex].bytecodeIndex == i);61 ASSERT(m_codeBlock->propertyAccessInstruction(propertyAccessInstructionIndex).bytecodeIndex == i); 62 62 63 63 #ifndef NDEBUG … … 71 71 72 72 // Track the location of the call; this will be used to recover repatch information. 73 ASSERT(m_codeBlock->propertyAccessInstruction s[propertyAccessInstructionIndex].bytecodeIndex == i);73 ASSERT(m_codeBlock->propertyAccessInstruction(propertyAccessInstructionIndex).bytecodeIndex == i); 74 74 m_propertyAccessCompilationInfo[propertyAccessInstructionIndex].callReturnLocation = call; 75 75 } … … 95 95 96 96 // Track the location of the call; this will be used to recover repatch information. 97 ASSERT(m_codeBlock->propertyAccessInstruction s[propertyAccessInstructionIndex].bytecodeIndex == i);97 ASSERT(m_codeBlock->propertyAccessInstruction(propertyAccessInstructionIndex).bytecodeIndex == i); 98 98 m_propertyAccessCompilationInfo[propertyAccessInstructionIndex].callReturnLocation = call; 99 99 }
Note:
See TracChangeset
for help on using the changeset viewer.