1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[TableGen] Remove unused member variable. NFC

llvm-svn: 260933
This commit is contained in:
Craig Topper 2016-02-16 04:24:54 +00:00
parent 62ff62909d
commit f2bd418b92
2 changed files with 0 additions and 3 deletions

View File

@ -225,7 +225,6 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables,
CD8_Scale = byteFromRec(Rec, "CD8_Scale"); CD8_Scale = byteFromRec(Rec, "CD8_Scale");
Name = Rec->getName(); Name = Rec->getName();
AsmString = Rec->getValueAsString("AsmString");
Operands = &insn.Operands.OperandList; Operands = &insn.Operands.OperandList;

View File

@ -87,8 +87,6 @@ private:
/// The instruction name as listed in the tables /// The instruction name as listed in the tables
std::string Name; std::string Name;
/// The AT&T AsmString for the instruction
std::string AsmString;
/// Indicates whether the instruction should be emitted into the decode /// Indicates whether the instruction should be emitted into the decode
/// tables; regardless, it will be emitted into the instruction info table /// tables; regardless, it will be emitted into the instruction info table