Changeset 34684 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Jun 19, 2008, 8:30:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r34581 r34684 152 152 size_t instructionCount = 0; 153 153 for (Vector<Instruction>::const_iterator it = begin; it != end; ++it) 154 if ( machine().isOpcode(it->u.opcode))154 if (exec->machine()->isOpcode(it->u.opcode)) 155 155 ++instructionCount; 156 156 … … 205 205 { 206 206 int location = it - begin; 207 switch ( machine().getOpcodeID(it->u.opcode)) {207 switch (exec->machine()->getOpcodeID(it->u.opcode)) { 208 208 case op_load: { 209 209 int r0 = (++it)->u.operand;
Note:
See TracChangeset
for help on using the changeset viewer.