[llvm-branch-commits] [llvm] [MIR] Serialize/Deserialize MachineInstr::LRSplit flag (PR #197362)
Quentin Colombet via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Jun 12 07:33:43 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.
----------------
qcolombet wrote:
Done
https://github.com/llvm/llvm-project/pull/197362
More information about the llvm-branch-commits
mailing list