[llvm] r260933 - [TableGen] Remove unused member variable. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 15 20:24:54 PST 2016


Author: ctopper
Date: Mon Feb 15 22:24:54 2016
New Revision: 260933

URL: http://llvm.org/viewvc/llvm-project?rev=260933&view=rev
Log:
[TableGen] Remove unused member variable. NFC

Modified:
    llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp
    llvm/trunk/utils/TableGen/X86RecognizableInstr.h

Modified: llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp?rev=260933&r1=260932&r2=260933&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp (original)
+++ llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp Mon Feb 15 22:24:54 2016
@@ -225,7 +225,6 @@ RecognizableInstr::RecognizableInstr(Dis
   CD8_Scale        = byteFromRec(Rec, "CD8_Scale");
 
   Name      = Rec->getName();
-  AsmString = Rec->getValueAsString("AsmString");
 
   Operands = &insn.Operands.OperandList;
 

Modified: llvm/trunk/utils/TableGen/X86RecognizableInstr.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/X86RecognizableInstr.h?rev=260933&r1=260932&r2=260933&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/X86RecognizableInstr.h (original)
+++ llvm/trunk/utils/TableGen/X86RecognizableInstr.h Mon Feb 15 22:24:54 2016
@@ -87,8 +87,6 @@ private:
 
   /// The instruction name as listed in the tables
   std::string Name;
-  /// The AT&T AsmString for the instruction
-  std::string AsmString;
 
   /// Indicates whether the instruction should be emitted into the decode
   /// tables; regardless, it will be emitted into the instruction info table




More information about the llvm-commits mailing list