repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[flang] Fix crash in HLFIR generation (#118399)
[llvm-project.git]
/
mlir
/
test
/
Transforms
/
test-symbol-privatize.mlir
blob
d40c48e10ab0bc0587ae854476a6989ff42c24b5
1
// RUN: mlir-opt %s -symbol-privatize=exclude="aap" | FileCheck %s
2
3
// CHECK-LABEL: module attributes {test.simple}
4
module attributes {test.simple} {
5
// CHECK: func @aap
6
func.func @aap() { return }
7
8
// CHECK: func private @kat
9
func.func @kat() { return }
10
}
11