diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-02-27 01:54:29 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-02-27 01:54:29 +0000 |
commit | 930a1ebd929aa0ab4c2610e7f7a721c18dcfe052 (patch) | |
tree | 83ccfe46e34d20ee3880401d436ca1c952cd7215 /lib/Target/X86/X86InstrControl.td | |
parent | 7497a9a7e816857402cf78ac930f286e800c69cf (diff) |
X86 disassembler support for jcxz, jecxz, and jrcxz. Fixes PR11643. Patch by Kay Tiong Khoo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrControl.td')
-rw-r--r-- | lib/Target/X86/X86InstrControl.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrControl.td b/lib/Target/X86/X86InstrControl.td index f3938751d7..ba86098390 100644 --- a/lib/Target/X86/X86InstrControl.td +++ b/lib/Target/X86/X86InstrControl.td @@ -77,7 +77,7 @@ defm JLE : ICBr<0x7E, 0x8E, "jle\t$dst", X86_COND_LE>; defm JG : ICBr<0x7F, 0x8F, "jg\t$dst" , X86_COND_G>; // jcx/jecx/jrcx instructions. -let isAsmParserOnly = 1, isBranch = 1, isTerminator = 1 in { +let isBranch = 1, isTerminator = 1 in { // These are the 32-bit versions of this instruction for the asmparser. In // 32-bit mode, the address size prefix is jcxz and the unprefixed version is // jecxz. |