Changeset 153243 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Jul 24, 2013, 9:03:36 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r153237 r153243 1973 1973 if (jitType() == JITCode::InterpreterThunk) { 1974 1974 const Vector<unsigned>& propertyAccessInstructions = m_unlinkedCode->propertyAccessInstructions(); 1975 for (size_t i = propertyAccessInstructions.size(); i--;) {1975 for (size_t i = 0; i < propertyAccessInstructions.size(); ++i) { 1976 1976 Instruction* instruction = &instructions()[propertyAccessInstructions[i]]; 1977 1977 switch (interpreter->getOpcodeID(instruction[0].u.opcode)) { … … 1995 1995 #if ENABLE(JIT) 1996 1996 if (JITCode::isJIT(jitType())) { 1997 for (unsigned i = m_structureStubInfos.size(); i--;) {1997 for (unsigned i = 0; i < m_structureStubInfos.size(); ++i) { 1998 1998 StructureStubInfo& stubInfo = m_structureStubInfos[i]; 1999 1999 switch (stubInfo.accessType) {
Note:
See TracChangeset
for help on using the changeset viewer.