Changeset 37781 in webkit for trunk/JavaScriptCore/VM/Machine.cpp


Ignore:
Timestamp:
Oct 22, 2008, 7:24:24 AM (17 years ago)
Author:
[email protected]
Message:

2008-10-22 Cameron Zwarich <[email protected]>

Reviewed by Alexey Proskuryakov.

Correct opcode names in documentation.

  • VM/Machine.cpp: (JSC::Machine::privateExecute):
File:
1 edited

Legend:

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

    r37750 r37781  
    15811581    }
    15821582    BEGIN_OPCODE(op_eq_null) {
    1583         /* neq dst(r) src(r)
     1583        /* eq_null dst(r) src(r)
    15841584
    15851585           Checks whether register src is null, as with the ECMAScript '!='
     
    16211621    }
    16221622    BEGIN_OPCODE(op_neq_null) {
    1623         /* neq dst(r) src(r)
     1623        /* neq_null dst(r) src(r)
    16241624
    16251625           Checks whether register src is not null, as with the ECMAScript '!='
Note: See TracChangeset for help on using the changeset viewer.