Ignore:
Timestamp:
Aug 15, 2013, 8:00:21 PM (12 years ago)
Author:
[email protected]
Message:

Fix x86 32bits build after r154158

  • assembler/X86Assembler.h: Add missing #ifdef for the x86_64 instructions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/assembler/X86Assembler.h

    r154158 r154161  
    506506    }
    507507
     508#if CPU(X86_64)
    508509    void decq_r(RegisterID dst)
    509510    {
    510511        m_formatter.oneByteOp64(OP_GROUP5_Ev, GROUP1_OP_OR, dst);
    511512    }
     513#endif // CPU(X86_64)
    512514
    513515    void inc_r(RegisterID dst)
     
    516518    }
    517519
     520#if CPU(X86_64)
    518521    void incq_r(RegisterID dst)
    519522    {
    520523        m_formatter.oneByteOp64(OP_GROUP5_Ev, GROUP1_OP_ADD, dst);
    521524    }
     525#endif // CPU(X86_64)
    522526
    523527    void negl_r(RegisterID dst)
Note: See TracChangeset for help on using the changeset viewer.