Ignore:
Timestamp:
Nov 4, 2009, 6:22:12 PM (16 years ago)
Author:
[email protected]
Message:

Remove bogus op_ prefix on dumped version of three opcodes.

Rubber-stamped by Oliver Hunt.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dump):

File:
1 edited

Legend:

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

    r50537 r50538  
    811811        }
    812812        case op_method_check: {
    813             printf("[%4d] op_method_check\n", location);
     813            printf("[%4d] method_check\n", location);
    814814            break;
    815815        }
     
    10191019            int r1 = (++it)->u.operand;
    10201020            int count = (++it)->u.operand;
    1021             printf("[%4d] op_strcat\t %s, %s, %d\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str(), count);
     1021            printf("[%4d] strcat\t\t %s, %s, %d\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str(), count);
    10221022            break;
    10231023        }
     
    10251025            int r0 = (++it)->u.operand;
    10261026            int r1 = (++it)->u.operand;
    1027             printf("[%4d] op_to_primitive\t %s, %s\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str());
     1027            printf("[%4d] to_primitive\t %s, %s\n", location, registerName(exec, r0).c_str(), registerName(exec, r1).c_str());
    10281028            break;
    10291029        }
Note: See TracChangeset for help on using the changeset viewer.