diff options
| author | Craig Topper <craig.topper@gmail.com> | 2014-01-04 05:09:27 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2014-01-04 05:09:27 +0000 |
| commit | 1da8582322c3af21c9d2bdf66909c1029e70782e (patch) | |
| tree | c2ef64e4bc3333e20bfcbb2ed364752a8ff0d65d /llvm/lib | |
| parent | eb68f6a9de3c782e93321e48422b4ac2b4f9a6be (diff) | |
| download | bcm5719-llvm-1da8582322c3af21c9d2bdf66909c1029e70782e.tar.gz bcm5719-llvm-1da8582322c3af21c9d2bdf66909c1029e70782e.zip | |
Remove JMP64pcrel32 (jmpq ). There are no tests for it. I'm pretty sure it won't be emitted correctly since it was set to NoImm. And I can't prove that gas accepts 'jmpq' with an immediate either. Remove the special case for it from the disassembler table generator.
llvm-svn: 198475
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrControl.td | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Target/X86/X86InstrControl.td b/llvm/lib/Target/X86/X86InstrControl.td index 7d610e6ca45..b9d5e803afe 100644 --- a/llvm/lib/Target/X86/X86InstrControl.td +++ b/llvm/lib/Target/X86/X86InstrControl.td @@ -52,11 +52,6 @@ let isBarrier = 1, isBranch = 1, isTerminator = 1, SchedRW = [WriteJump] in { let hasSideEffects = 0 in def JMP_1 : Ii8PCRel<0xEB, RawFrm, (outs), (ins brtarget8:$dst), "jmp\t$dst", [], IIC_JMP_REL>; - // FIXME : Intel syntax for JMP64pcrel32 such that it is not ambiguious - // with JMP_1. - let hasSideEffects = 0 in - def JMP64pcrel32 : I<0xE9, RawFrm, (outs), (ins brtarget:$dst), - "jmpq\t$dst", [], IIC_JMP_REL>; } // Conditional Branches. |

