Ignore:
Timestamp:
Oct 28, 2010, 12:22:38 AM (15 years ago)
Author:
[email protected]
Message:

Wrong instruction form for BKPT
https://bugs.webkit.org/show_bug.cgi?id=48427

Reviewed by Andreas Kling.

One '0' is missing from BKPT instruction.
Thanks for Jacob Bramley for reporting this error.

  • assembler/ARMAssembler.h:
File:
1 edited

Legend:

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

    r65993 r70752  
    166166#if WTF_ARM_ARCH_AT_LEAST(5)
    167167            CLZ = 0x016f0f10,
    168             BKPT = 0xe120070,
     168            BKPT = 0xe1200070,
    169169            BLX = 0x012fff30,
    170170#endif
     
    207207            padForAlign8  = 0x00,
    208208            padForAlign16 = 0x0000,
    209             padForAlign32 = 0xee120070,
     209            padForAlign32 = 0xe12fff7f // 'bkpt 0xffff' instruction.
    210210        };
    211211
Note: See TracChangeset for help on using the changeset viewer.