Changeset 39077 in webkit for trunk/JavaScriptCore
- Timestamp:
- Dec 6, 2008, 8:20:56 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r39072 r39077 1 2008-12-06 Sam Weinig <[email protected]> 2 3 Fix the Gtk build. 4 5 * jit/JITPropertyAccess.cpp: 6 (JSC::JIT::compileGetByIdHotPath): 7 (JSC::JIT::compilePutByIdHotPath): 8 1 9 2008-12-06 Sam Weinig <[email protected]> 2 10 -
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.