[AMDGPU] Make v8i16/v8f16 legal
[llvm-project.git] / mlir / test / IR / invalid-module-op.mlir
blob8caace93dc7b001e11e5ff45beac75d8ead5a9ea
1 // RUN: mlir-opt %s -split-input-file -verify-diagnostics
3 // -----
5 func @module_op() {
6   // expected-error@+1 {{Operations with a 'SymbolTable' must have exactly one block}}
7   builtin.module {
8   ^bb1:
9     "test.dummy"() : () -> ()
10   ^bb2:
11     "test.dummy"() : () -> ()
12   }
13   return
16 // -----
18 func @module_op() {
19   // expected-error@+1 {{region should have no arguments}}
20   builtin.module {
21   ^bb1(%arg: i32):
22   }
23   return
26 // -----
28 // expected-error@+1 {{can only contain attributes with dialect-prefixed names}}
29 module attributes {attr} {