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

Mehdi Amini llvmlistbot at llvm.org
Mon Mar 31 12:45:23 PDT 2025


================
@@ -0,0 +1,12 @@
+// Bug: https://github.com/llvm/llvm-project/issues/132894
+
+// RUN: not mlir-opt %s 2>&1 | FileCheck %s
+
+// CHECK: error: 'spirv.func' op entry block must have 1 arguments to match function signature
+module {
+  spirv.func @f(f32) "None" {
+    %c0 = arith.constant 0 : index
+    spirv.Return
+  }
+}
----------------
joker-eph wrote:

I suspect this test should go to `function-decorations.mlir`

Also look at the last test in the file to see how we check for errors, this is not using FileCheck CHECK but the verify-diagnostics mechanism.

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


More information about the Mlir-commits mailing list