mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
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:
parent
c376473bb4
commit
5572685621
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user