Changeset 65150 in webkit for trunk/JavaScriptCore/assembler
- Timestamp:
- Aug 11, 2010, 6:27:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/assembler/ARMv7Assembler.h
r65042 r65150 463 463 ConditionEQ, 464 464 ConditionNE, 465 ConditionHS, 466 ConditionLO, 465 ConditionHS, ConditionCS = ConditionHS, 466 ConditionLO, ConditionCC = ConditionLO, 467 467 ConditionMI, 468 468 ConditionPL, … … 476 476 ConditionLE, 477 477 ConditionAL, 478 479 ConditionCS = ConditionHS, 480 ConditionCC = ConditionLO, 478 ConditionInvalid 481 479 } Condition; 482 480 … … 523 521 JmpSrc(int offset, JumpType type) 524 522 : m_offset(offset) 525 , m_condition( 0xffff)523 , m_condition(ConditionInvalid) 526 524 , m_type(type) 527 525 {
Note:
See TracChangeset
for help on using the changeset viewer.