[clang-tidy][NFC]remove deps of clang in clang tidy test (#116588)
[llvm-project.git] / mlir / test / mlir-pdll / Parser / pattern-failure.pdll
blob8b104128f5204f06fa34dadf7b0344ba47776233
1 // RUN: not mlir-pdll %s -split-input-file 2>&1 | FileCheck %s
3 // CHECK: expected `{` or `=>` to start pattern body
4 Pattern }
6 // -----
8 // CHECK: :6:9: error: `Foo` has already been defined
9 // CHECK: :5:9: note: see previous definition here
10 Pattern Foo { erase root: Op; }
11 Pattern Foo { erase root: Op; }
13 // -----
15 // CHECK: `return` statements are only permitted within a `Constraint` or `Rewrite` body
16 Pattern {
17   return _: Value;
20 // -----
22 // CHECK: expected Pattern body to terminate with an operation rewrite statement
23 Pattern {
24   let value: Value;
27 // -----
29 // CHECK: Pattern body was terminated by an operation rewrite statement, but found trailing statements
30 Pattern {
31   erase root: Op;
32   let value: Value;
35 // -----
37 // CHECK: expected Pattern lambda body to contain a single operation rewrite statement, such as `erase`, `replace`, or `rewrite`
38 Pattern => op<>;
40 // -----
42 Rewrite SomeRewrite();
44 // CHECK: unable to invoke `Rewrite` within a match section
45 Pattern {
46   SomeRewrite();
49 // -----
51 //===----------------------------------------------------------------------===//
52 // Metadata
53 //===----------------------------------------------------------------------===//
55 // CHECK: expected pattern metadata identifier
56 Pattern with {}
58 // -----
60 // CHECK: unknown pattern metadata
61 Pattern with unknown {}
63 // -----
65 // CHECK: expected `(` before pattern benefit
66 Pattern with benefit) {}
68 // -----
70 // CHECK: expected integral pattern benefit
71 Pattern with benefit(foo) {}
73 // -----
75 // CHECK: expected pattern benefit to fit within a 16-bit integer
76 Pattern with benefit(65536) {}
78 // -----
80 // CHECK: expected `)` after pattern benefit
81 Pattern with benefit(1( {}
83 // -----
85 // CHECK: pattern benefit has already been specified
86 // CHECK: see previous definition here
87 Pattern with benefit(1), benefit(1) {}
89 // -----
91 // CHECK: pattern recursion metadata has already been specified
92 // CHECK: see previous definition here
93 Pattern with recursion, recursion {}