Print the visibility of declarations.
[oota-llvm.git] / test / CodeGen / X86 / visibility.ll
1 ; RUN: llc  %s -o - | FileCheck %s
2
3 define hidden void @foo() nounwind {
4 entry:
5   call void @bar()
6   ret void
7 }
8
9 declare hidden void @bar()
10
11 ;CHECK: .hidden bar