Changeset 35594 in webkit for trunk/JavaScriptCore/VM/Machine.cpp
- Timestamp:
- Aug 6, 2008, 3:50:07 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.cpp
r35593 r35594 1031 1031 #define ADD_OPCODE_ID(id) m_opcodeIDTable.add(&&id, id); 1032 1032 FOR_EACH_OPCODE_ID(ADD_OPCODE_ID); 1033 #undef ADD_OPCODE 1033 #undef ADD_OPCODE_ID 1034 1034 ASSERT(m_opcodeIDTable.size() == numOpcodeIDs); 1035 1035 op_throw_end_indirect = &&op_throw_end; … … 1608 1608 } 1609 1609 BEGIN_OPCODE(op_not) { 1610 /* not dst(r) src 1(r) src2(r)1611 1612 Computes logical NOT of register src 1(converted to1610 /* not dst(r) src(r) 1611 1612 Computes logical NOT of register src (converted to 1613 1613 boolean), and puts the result in register dst. 1614 1614 */
Note:
See TracChangeset
for help on using the changeset viewer.