[Mlir-commits] [mlir] Print region argument only when sufficient number of args are present in body (PR #133167)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu Mar 27 16:53:20 PDT 2025


================
@@ -118,7 +118,8 @@ void call_interface_impl::printFunctionSignature(
       ArrayRef<NamedAttribute> attrs;
       if (argAttrs)
         attrs = llvm::cast<DictionaryAttr>(argAttrs[i]).getValue();
-      p.printRegionArgument(body->getArgument(i), attrs);
+      if (body->getNumArguments() > i)
+        p.printRegionArgument(body->getArgument(i), attrs);
----------------
hiraditya wrote:

It is possible the reduced IR from the bug is invalid.

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


More information about the Mlir-commits mailing list