Files
clang-p2996/mlir/test/Examples/transform/Ch3/invalid.mlir
Oleksandr "Alex" Zinenko b33b91a217 [mlir] update transform dialect tutorials (#81199)
Use the "main" transform-interpreter pass instead of the test pass.
This, along with the previously introduced debug extension, now allow
tutorials to no longer depend on test passes and extensions.
2024-02-09 17:35:14 +01:00

11 lines
401 B
MLIR

// RUN: transform-opt-ch3 %s --transform-interpreter --split-input-file --verify-diagnostics
// expected-note @below {{offending operation}}
module attributes {transform.with_named_sequence} {
transform.named_sequence @__transform_main(
// expected-error @below {{expected the payload operation to implement CallOpInterface}}
%arg0: !transform.my.call_op_interface) {
transform.yield
}
}