[TableGen] Remove unused member variable.
authorCraig Topper <craig.topper@intel.com>
Mon, 18 Jun 2018 16:17:45 +0000 (16:17 +0000)
committerCraig Topper <craig.topper@intel.com>
Mon, 18 Jun 2018 16:17:45 +0000 (16:17 +0000)
I think this became unused after r324196.

llvm-svn: 334956

llvm/utils/TableGen/AsmMatcherEmitter.cpp

index 7ad0704..aa4f8e5 100644 (file)
@@ -516,20 +516,6 @@ struct MatchableInfo {
   /// removed.
   SmallVector<AsmOperand, 8> AsmOperands;
 
-  /// AsmOperandEqualityConstraints - an array of pairs holding operand
-  /// constraints.
-  /// Each constraint is represented as a pair holding position of the token of
-  /// the operand asm name.
-  /// For example, an "AsmString" "add $Vd.s, $Vn.s, $Xn" would be
-  /// split in the following list of tokens:
-  ///
-  ///    ['add', '$Vd', '.s', '$Vn', '.s', '$Xn']
-  ///
-  /// A constraint "$Vd = $Vn" (e.g. for a destructive operation) is rendered
-  /// as the pair {1,3} into this set (note that tokens are numbered starting
-  /// from 0).
-  SmallVector<std::pair<unsigned,unsigned>, 1> AsmOperandTiedConstraints;
-
   /// Predicates - The required subtarget features to match this instruction.
   SmallVector<const SubtargetFeatureInfo *, 4> RequiredFeatures;