@@ -279,9 +279,8 @@ class MachineOperand {
279
279
static void printIRSlotNumber (raw_ostream &OS, int Slot);
280
280
281
281
// / Print the MachineOperand to \p os.
282
- // / Providing a valid \p TRI and \p IntrinsicInfo results in a more
283
- // / target-specific printing. If \p TRI and \p IntrinsicInfo are null, the
284
- // / function will try to pick it up from the parent.
282
+ // / Providing a valid \p TRI results in a more target-specific printing. If
283
+ // / \p TRI is null, the function will try to pick it up from the parent.
285
284
void print (raw_ostream &os, const TargetRegisterInfo *TRI = nullptr ) const ;
286
285
287
286
// / More complex way of printing a MachineOperand.
@@ -304,14 +303,13 @@ class MachineOperand {
304
303
// / \param TRI - provide more target-specific information to the printer.
305
304
// / Unlike the previous function, this one will not try and get the
306
305
// / information from it's parent.
307
- // / \param IntrinsicInfo - same as \p TRI.
308
306
void print (raw_ostream &os, ModuleSlotTracker &MST, LLT TypeToPrint,
309
307
std::optional<unsigned > OpIdx, bool PrintDef, bool IsStandalone,
310
308
bool ShouldPrintRegisterTies, unsigned TiedOperandIdx,
311
309
const TargetRegisterInfo *TRI) const ;
312
310
313
- // / Same as print(os, TRI, IntrinsicInfo ), but allows to specify the low-level
314
- // / type to be printed the same way the full version of print(...) does it.
311
+ // / Same as print(os, TRI), but allows to specify the low-level type to be
312
+ // / printed the same way the full version of print(...) does it.
315
313
void print (raw_ostream &os, LLT TypeToPrint,
316
314
const TargetRegisterInfo *TRI = nullptr ) const ;
317
315
0 commit comments