mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 05:22:04 +00:00
available_externall linkage is not local, this was confusing the codegenerator,
and it wasn't generating calls through @PLT for these functions. hasLocalLinkage() is now false for available_externally, I attempted to fix the inliner and dce to handle available_externally properly. It passed make check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -64,7 +64,7 @@ bool GlobalDCE::runOnModule(Module &M) {
|
||||
Changed |= RemoveUnusedGlobalValue(*I);
|
||||
// Functions with external linkage are needed if they have a body
|
||||
if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage() &&
|
||||
!I->isDeclaration())
|
||||
!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
|
||||
GlobalIsNeeded(I);
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ bool GlobalDCE::runOnModule(Module &M) {
|
||||
// Externally visible & appending globals are needed, if they have an
|
||||
// initializer.
|
||||
if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage() &&
|
||||
!I->isDeclaration())
|
||||
!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
|
||||
GlobalIsNeeded(I);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user