summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenInstruction.h
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-12-01 00:12:04 +0000
committerNate Begeman <natebegeman@mac.com>2005-12-01 00:12:04 +0000
commit86193d1190b30a537415fc1c384f4e51039fab74 (patch)
tree606e169552d0ac66a0cb84ba1595ef4d7b889682 /utils/TableGen/CodeGenInstruction.h
parentddb395463c08b39090bbee4ed22433f5990a6331 (diff)
downloadllvm-86193d1190b30a537415fc1c384f4e51039fab74.tar.gz
llvm-86193d1190b30a537415fc1c384f4e51039fab74.tar.bz2
llvm-86193d1190b30a537415fc1c384f4e51039fab74.tar.xz
Nuke CodeGenInstruction's ValueType member, it is no longer used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenInstruction.h')
-rw-r--r--utils/TableGen/CodeGenInstruction.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h
index cb55d45c18..be67754d3e 100644
--- a/utils/TableGen/CodeGenInstruction.h
+++ b/utils/TableGen/CodeGenInstruction.h
@@ -39,10 +39,6 @@ namespace llvm {
///
Record *Rec;
- /// Ty - The MachineValueType of the operand.
- ///
- MVT::ValueType Ty;
-
/// Name - If this operand was assigned a symbolic name, this is it,
/// otherwise, it's empty.
std::string Name;
@@ -64,11 +60,9 @@ namespace llvm {
/// up of multiple MI operands.
DagInit *MIOperandInfo;
- OperandInfo(Record *R, MVT::ValueType T, const std::string &N,
- const std::string &PMN, unsigned MION, unsigned MINO,
- DagInit *MIOI)
-
- : Rec(R), Ty(T), Name(N), PrinterMethodName(PMN), MIOperandNo(MION),
+ OperandInfo(Record *R, const std::string &N, const std::string &PMN,
+ unsigned MION, unsigned MINO, DagInit *MIOI)
+ : Rec(R), Name(N), PrinterMethodName(PMN), MIOperandNo(MION),
MINumOperands(MINO), MIOperandInfo(MIOI) {}
};