Print the visibility of available_externally functions.

We were already printing it for declarations, but not available_externally.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242027 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2015-07-13 13:55:18 +00:00
parent c376473bb4
commit 5572685621
2 changed files with 7 additions and 1 deletions

View File

@ -1023,7 +1023,7 @@ bool AsmPrinter::doFinalization(Module &M) {
// Emit visibility info for declarations
for (const Function &F : M) {
if (!F.isDeclaration())
if (!F.isDeclarationForLinker())
continue;
GlobalValue::VisibilityTypes V = F.getVisibility();
if (V == GlobalValue::DefaultVisibility)

View File

@ -2,13 +2,19 @@
@zed = external hidden constant i32
define available_externally hidden void @baz() {
ret void
}
define hidden void @foo() nounwind {
entry:
call void @bar(i32* @zed)
call void @baz()
ret void
}
declare hidden void @bar(i32*)
;CHECK: .hidden zed
;CHECK: .hidden baz
;CHECK: .hidden bar