Use the main transform interpreter pass instead of the test pass. The only tests that are not updated are specific to the operation of the test pass.
14 lines
570 B
MLIR
14 lines
570 B
MLIR
// RUN: mlir-opt %s
|
|
// No need to check anything else than parsing here, this is being used by another test as data.
|
|
|
|
module attributes {transform.with_named_sequence} {
|
|
transform.named_sequence @__transform_main(%arg0: !transform.any_op) {
|
|
transform.debug.emit_remark_at %arg0, "outer" : !transform.any_op
|
|
transform.sequence %arg0 : !transform.any_op failures(propagate) attributes {transform.target_tag="transform"} {
|
|
^bb1(%arg1: !transform.any_op):
|
|
transform.debug.emit_remark_at %arg1, "inner" : !transform.any_op
|
|
}
|
|
transform.yield
|
|
}
|
|
}
|