[llvm] r335450 - [llvm-exegesis][NFC] Fix `Operand` class comments.

Clement Courbet via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 25 04:12:30 PDT 2018


Author: courbet
Date: Mon Jun 25 04:12:30 2018
New Revision: 335450

URL: http://llvm.org/viewvc/llvm-project?rev=335450&view=rev
Log:
[llvm-exegesis][NFC] Fix `Operand` class comments.

Modified:
    llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h

Modified: llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h?rev=335450&r1=335449&r2=335450&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h (original)
+++ llvm/trunk/tools/llvm-exegesis/lib/MCInstrDescView.h Mon Jun 25 04:12:30 2018
@@ -61,9 +61,9 @@ struct Operand {
   bool IsExplicit = false;
   const RegisterAliasingTracker *Tracker = nullptr; // Set for Register Op.
   const llvm::MCOperandInfo *Info = nullptr;        // Set for Explicit Op.
-  int TiedToIndex = -1;                             // Set for Reg/Explicit Op.
+  int TiedToIndex = -1;                             // Set for Reg&Explicit Op.
   const llvm::MCPhysReg *ImplicitReg = nullptr;     // Set for Implicit Op.
-  int VariableIndex = -1;                           // Set for Reg/Explicit Op.
+  int VariableIndex = -1;                           // Set for Explicit Op.
 };
 
 // A view over an MCInstrDesc offering a convenient interface to compute




More information about the llvm-commits mailing list