diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-09-07 19:03:48 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-09-07 19:03:48 +0000 |
commit | ec3bc3941390b16969b1e9469a0f446bbee45dfb (patch) | |
tree | 7db79e2f9d0a2cee8a14f2a8f69a28ece7e5e9f9 | |
parent | 61c958e691bdaa04897553d97153bcdd73996aa0 (diff) |
Consistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30152 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 9e19f94207..77944ba6d7 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -383,7 +383,7 @@ let isBranch = 1, isTerminator = 1, noResults = 1 in I<opcode, RawFrm, ops, asm, pattern>; // Indirect branches -let isBarrier = 1 in +let isBranch = 1, isBarrier = 1 in def JMP : IBr<0xE9, (ops brtarget:$dst), "jmp $dst", [(br bb:$dst)]>; let isBranch = 1, isTerminator = 1, noResults = 1, isBarrier = 1 in { |