Ignore:
Timestamp:
Jun 19, 2008, 8:30:09 PM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Geoff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/CodeBlock.cpp

    r34581 r34684  
    152152    size_t instructionCount = 0;
    153153    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))
    155155            ++instructionCount;
    156156
     
    205205{
    206206    int location = it - begin;
    207     switch (machine().getOpcodeID(it->u.opcode)) {
     207    switch (exec->machine()->getOpcodeID(it->u.opcode)) {
    208208        case op_load: {
    209209            int r0 = (++it)->u.operand;
Note: See TracChangeset for help on using the changeset viewer.