[llvm] [CodeGen] Add preliminary plumbing for `samesign` flag (PR #112354)
Antonio Frighetto via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 29 08:07:16 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))
----------------
antoniofrighetto wrote:
Added, thanks, think it should be on track now.
https://github.com/llvm/llvm-project/pull/112354
More information about the llvm-commits
mailing list