You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
// RUN: not mlir-tblgen -gen-rewriters -I %S/../../include -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
|
|
// RUN: not mlir-tblgen -gen-rewriters -I %S/../../include -DERROR2 %s 2>&1 | FileCheck --check-prefix=ERROR2 %s
|
|
|
|
include "mlir/IR/OpBase.td"
|
|
|
|
// Check using the dialect name as the namespace
|
|
def A_Dialect : Dialect {
|
|
let name = "a";
|
|
}
|
|
|
|
class A_Op<string mnemonic, list<OpTrait> traits = []> :
|
|
Op<A_Dialect, mnemonic, traits>;
|
|
|
|
def OpA : A_Op<"op_a">, Arguments<(ins AnyInteger, AnyInteger)>, Results<(outs AnyInteger)>;
|
|
def OpB : A_Op<"op_b">, Arguments<(ins AnyInteger, AnyAttr:$value)>, Results<(outs AnyInteger)>;
|
|
|
|
#ifdef ERROR1
|
|
def NativeMatcher : NativeCodeCall<"success(nativeCall($0, $1))">;
|
|
// ERROR1: [[@LINE+1]]:1: error: binding symbol 'error' to native code call unsupported right now
|
|
def : Pat<(OpA (NativeMatcher:$error $val), AnyI32Attr:$arg),
|
|
(OpB $val, $arg)>;
|
|
#endif
|
|
|
|
#ifdef ERROR2
|
|
def NativeMatcher : NativeCodeCall<"success(nativeCall($0, $1))">;
|
|
// ERROR2: [[@LINE+1]]:1: error: Matching nested tree in NativeCodecall not support for
|
|
def : Pat<(OpA (NativeMatcher (OpB $val, $unused)), AnyI32Attr:$arg),
|
|
(OpB $val, $arg)>;
|
|
#endif
|