1// RUN: mlir-opt %s --load-pass-plugin=%standalone_libs/StandalonePlugin%shlibext --pass-pipeline="builtin.module(standalone-switch-bar-foo)" | FileCheck %s 2 3module { 4 // CHECK-LABEL: func @foo() 5 func.func @bar() { 6 return 7 } 8 9 // CHECK-LABEL: func @abar() 10 func.func @abar() { 11 return 12 } 13} 14