[llvm-branch-commits] [llvm] [MIR] Serialize/Deserialize MachineInstr::LRSplit attribute (PR #197362)

Diana Picus via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed May 13 01:45:53 PDT 2026


================
@@ -899,6 +899,8 @@ static void printMI(raw_ostream &OS, MFPrintState &State,
     OS << "samesign ";
   if (MI.getFlag(MachineInstr::InBounds))
     OS << "inbounds ";
+  if (MI.getFlag(MachineInstr::LRSplit))
+    OS << "lr-split ";
 
   // NOTE: Please add new MIFlags also to the MI_FLAGS_STR in
   // llvm/utils/update_mir_test_checks.py.
----------------
rovka wrote:

Since you're here, can you also update the path in this comment? :)

https://github.com/llvm/llvm-project/pull/197362


More information about the llvm-branch-commits mailing list