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.
11 lines
401 B
MLIR
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
|
|
}
|
|
}
|