aboutsummaryrefslogtreecommitdiff
path: root/mlir/test/Transforms/test-symbol-privatize.mlir
blob: d40c48e10ab0bc0587ae854476a6989ff42c24b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: mlir-opt %s -symbol-privatize=exclude="aap" | FileCheck %s

// CHECK-LABEL: module attributes {test.simple}
module attributes {test.simple} {
  // CHECK: func @aap
  func.func @aap() { return }

  // CHECK: func private @kat
  func.func @kat() { return }
}