xref: /llvm-project/llvm/test/Transforms/EliminateAvailableExternally/visibility.ll (revision cee313d288a4faf0355d76fb6e0e927e211d08a5)
1*cee313d2SEric Christopher; RUN: opt -passes=elim-avail-extern -S < %s | FileCheck %s
2*cee313d2SEric Christopher
3*cee313d2SEric Christopher; CHECK: declare hidden void @f()
4*cee313d2SEric Christopherdefine available_externally hidden void @f() {
5*cee313d2SEric Christopher  ret void
6*cee313d2SEric Christopher}
7*cee313d2SEric Christopher
8*cee313d2SEric Christopherdefine void @g() {
9*cee313d2SEric Christopher  call void @f()
10*cee313d2SEric Christopher  ret void
11*cee313d2SEric Christopher}
12