================
@@ -1860,8 +1862,12 @@ void MachineInstr::print(raw_ostream &OS, 
ModuleSlotTracker &MST,
     OS << "nneg ";
   if (getFlag(MachineInstr::Disjoint))
     OS << "disjoint ";
+  if (getFlag(MachineInstr::NoUSWrap))
----------------
ritter-x2a wrote:

I think that might be because `nusw` was already printed in MIRPrinter.cpp's 
`printMI` (see above). I'd guess that this function here, 
`MachineInstr::print`, is mostly used for debug prints, but I haven't followed 
all the call sites. (It would probably make sense to have them share an 
implementation, though).

https://github.com/llvm/llvm-project/pull/150900
_______________________________________________
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to