[PATCH] D31743: [X86] Change instructions names to keep consistency with the naming convention. NFC

Ayman Musa via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 13 02:25:19 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL300184: [X86] Change instructions names to keep consistency with the naming convention. (authored by aymanmus).

Changed prior to commit:
  https://reviews.llvm.org/D31743?vs=94323&id=95089#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D31743

Files:
  llvm/trunk/cmake/modules/AddLLVM.cmake
  llvm/trunk/lib/Target/X86/X86InstrVMX.td


Index: llvm/trunk/cmake/modules/AddLLVM.cmake
===================================================================
--- llvm/trunk/cmake/modules/AddLLVM.cmake
+++ llvm/trunk/cmake/modules/AddLLVM.cmake
@@ -1213,7 +1213,8 @@
       endif()
       string(FIND ${lit_suite} Inputs is_inputs)
       string(FIND ${lit_suite} Output is_output)
-      if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
+      string(FIND ${lit_suite} .svn is_svn)
+      if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1 AND is_svn EQUAL -1))
         continue()
       endif()
 
Index: llvm/trunk/lib/Target/X86/X86InstrVMX.td
===================================================================
--- llvm/trunk/lib/Target/X86/X86InstrVMX.td
+++ llvm/trunk/lib/Target/X86/X86InstrVMX.td
@@ -43,11 +43,11 @@
   "vmptrld\t$vmcs", []>, PS;
 def VMPTRSTm : I<0xC7, MRM7m, (outs), (ins i64mem:$vmcs),
   "vmptrst\t$vmcs", []>, TB;
-def VMREAD64rm : I<0x78, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
+def VMREAD64mr : I<0x78, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
   "vmread{q}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[In64BitMode]>;
 def VMREAD64rr : I<0x78, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
   "vmread{q}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[In64BitMode]>;
-def VMREAD32rm : I<0x78, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
+def VMREAD32mr : I<0x78, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
   "vmread{l}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[Not64BitMode]>;
 def VMREAD32rr : I<0x78, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
   "vmread{l}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[Not64BitMode]>;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D31743.95089.patch
Type: text/x-patch
Size: 1656 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170413/bd2d95e3/attachment-0001.bin>


More information about the llvm-commits mailing list