[llvm] r331160 - [X86] Hide another instruction from the assembly matcher table to avoid a duplicate entry. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 29 23:21:23 PDT 2018


Author: ctopper
Date: Sun Apr 29 23:21:23 2018
New Revision: 331160

URL: http://llvm.org/viewvc/llvm-project?rev=331160&view=rev
Log:
[X86] Hide another instruction from the assembly matcher table to avoid a duplicate entry. NFC

Modified:
    llvm/trunk/lib/Target/X86/X86InstrControl.td

Modified: llvm/trunk/lib/Target/X86/X86InstrControl.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrControl.td?rev=331160&r1=331159&r2=331160&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrControl.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrControl.td Sun Apr 29 23:21:23 2018
@@ -180,6 +180,7 @@ let isBranch = 1, isTerminator = 1, isBa
   def FARJMP64   : RI<0xFF, MRM5m, (outs), (ins opaque80mem:$dst),
                       "ljmp{q}\t{*}$dst", []>, Sched<[WriteJump]>;
 
+  let AsmVariantName = "att" in
   def FARJMP16m  : I<0xFF, MRM5m, (outs), (ins opaque32mem:$dst),
                      "ljmp{w}\t{*}$dst", []>, OpSize16, Sched<[WriteJumpLd]>;
   def FARJMP32m  : I<0xFF, MRM5m, (outs), (ins opaque48mem:$dst),




More information about the llvm-commits mailing list