[llvm] [CodeGen] Add preliminary plumbing for `samesign` flag (PR #112354)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 18 20:10:01 PDT 2024
================
@@ -837,6 +837,8 @@ void MIPrinter::print(const MachineInstr &MI) {
OS << "disjoint ";
if (MI.getFlag(MachineInstr::NoUSWrap))
OS << "nusw ";
+ if (MI.getFlag(MachineInstr::SameSign))
----------------
arsenm wrote:
Should get mir print / parse test
https://github.com/llvm/llvm-project/pull/112354
More information about the llvm-commits
mailing list