13 lines
304 B
MLIR
13 lines
304 B
MLIR
// RUN: mlir-opt %s --load-pass-plugin=%standalone_libs/StandalonePlugin%shlibext --pass-pipeline="builtin.module(standalone-switch-bar-foo)" | FileCheck %s
|
|
|
|
module {
|
|
// CHECK-LABEL: func @foo()
|
|
func.func @bar() {
|
|
return
|
|
}
|
|
|
|
// CHECK-LABEL: func @abar()
|
|
func.func @abar() {
|
|
return
|
|
}
|
|
}
|