Changeset 46618 in webkit for trunk/JavaScriptCore/bytecompiler
- Timestamp:
- Jul 30, 2009, 7:20:11 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r46598 r46618 1191 1191 { 1192 1192 #if ENABLE(JIT) 1193 m_codeBlock->addStructureStubInfo(StructureStubInfo( op_get_by_id));1193 m_codeBlock->addStructureStubInfo(StructureStubInfo(access_get_by_id)); 1194 1194 #else 1195 1195 m_codeBlock->addPropertyAccessInstruction(instructions().size()); … … 1210 1210 { 1211 1211 #if ENABLE(JIT) 1212 m_codeBlock->addStructureStubInfo(StructureStubInfo( op_put_by_id));1212 m_codeBlock->addStructureStubInfo(StructureStubInfo(access_put_by_id)); 1213 1213 #else 1214 1214 m_codeBlock->addPropertyAccessInstruction(instructions().size());
Note:
See TracChangeset
for help on using the changeset viewer.