[llvm] [GlobalISel] Combine (sext (trunc x)) to (sext_inreg x) (PR #131622)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 18:51:02 PDT 2025


================
@@ -36,6 +36,20 @@ bool CombinerHelper::matchSextOfTrunc(const MachineOperand &MO,
   LLT DstTy = MRI.getType(Dst);
   LLT SrcTy = MRI.getType(Src);
 
+  // Combines without nsw trunc.
+  if (!(Trunc->getFlags() & MachineInstr::NoSWrap)) {
----------------
arsenm wrote:

```suggestion
  if (!Trunc->getFlag(MachineInstr::NoSWrap)) {
```

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


More information about the llvm-commits mailing list