Bug 486096 - TraceMonkey: ARM BKPT instructions are not properly encoded. r=vlad

This commit is contained in:
Jacob Bramley 2009-05-09 15:32:29 -04:00
Родитель 72bbe6f33b
Коммит 6839da63d6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -538,7 +538,7 @@ enum {
//#define INT3() underrunProtect(1); *(--_nIns) = 0xcc; asm_output("int3")
//#define RET() INT3()
#define BKPT_insn ((NIns)( (0xE<<24) | (0x12<<20) | (0x7<<4) ))
#define BKPT_insn ((NIns)( COND_AL | (0x12<<20) | (0x7<<4) ))
#define BKPT_nochk() do { \
*(--_nIns) = BKPT_insn; } while (0)