xref: /llvm-project/mlir/test/Pass/interface-pass.mlir (revision 13bd41096286305ee603428f6adf161f52981827)
1// RUN: mlir-opt %s -verify-diagnostics -pass-pipeline='builtin.module(func.func(test-interface-pass))' -o /dev/null
2
3// Test that we run the interface pass on the function.
4
5// expected-remark@below {{Executing interface pass on operation}}
6func.func @main() {
7  return
8}
9