[Mlir-commits] [mlir] [mlir] Add test for invalid entry block (PR #133167)

Mehdi Amini llvmlistbot at llvm.org
Mon Mar 31 12:42:21 PDT 2025


================
@@ -1021,6 +1021,14 @@ LogicalResult spirv::FuncOp::verifyType() {
 
 LogicalResult spirv::FuncOp::verifyBody() {
   FunctionType fnType = getFunctionType();
+  if (!isExternal()) {
+    Block &entryBlock = front();
+
+    unsigned numArguments = this->getNumArguments();
----------------
joker-eph wrote:

```suggestion
    size_t numArguments = this->getNumArguments();
```

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


More information about the Mlir-commits mailing list