Changeset 65150 in webkit for trunk/JavaScriptCore/assembler


Ignore:
Timestamp:
Aug 11, 2010, 6:27:04 AM (15 years ago)
Author:
[email protected]
Message:

2010-08-11 Gabor Loki <[email protected]>

Qt build fix (ARMv7).

Fix invalid conversion from int to Condition.
Add ARMv7Assembler.cpp to JavaScriptCore.pro.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/assembler/ARMv7Assembler.h

    r65042 r65150  
    463463        ConditionEQ,
    464464        ConditionNE,
    465         ConditionHS,
    466         ConditionLO,
     465        ConditionHS, ConditionCS = ConditionHS,
     466        ConditionLO, ConditionCC = ConditionLO,
    467467        ConditionMI,
    468468        ConditionPL,
     
    476476        ConditionLE,
    477477        ConditionAL,
    478        
    479         ConditionCS = ConditionHS,
    480         ConditionCC = ConditionLO,
     478        ConditionInvalid
    481479    } Condition;
    482480
     
    523521        JmpSrc(int offset, JumpType type)
    524522            : m_offset(offset)
    525             , m_condition(0xffff)
     523            , m_condition(ConditionInvalid)
    526524            , m_type(type)
    527525        {
Note: See TracChangeset for help on using the changeset viewer.