mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 21:18:19 +00:00
GlobalOpt: fix an issue where CXAAtExitFn points to a deleted function.
CXAAtExitFn was set outside a loop and before optimizations where functions can be deleted. This patch will set CXAAtExitFn inside the loop and after optimizations. Seg fault when running LTO because of accesses to a deleted function. rdar://problem/13838828 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -3323,8 +3323,6 @@ bool GlobalOpt::runOnModule(Module &M) {
|
||||
// Try to find the llvm.globalctors list.
|
||||
GlobalVariable *GlobalCtors = FindGlobalCtors(M);
|
||||
|
||||
Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
|
||||
|
||||
bool LocalChange = true;
|
||||
while (LocalChange) {
|
||||
LocalChange = false;
|
||||
@@ -3342,7 +3340,9 @@ bool GlobalOpt::runOnModule(Module &M) {
|
||||
// Resolve aliases, when possible.
|
||||
LocalChange |= OptimizeGlobalAliases(M);
|
||||
|
||||
// Try to remove trivial global destructors.
|
||||
// Try to remove trivial global destructors if they are not removed
|
||||
// already.
|
||||
Function *CXAAtExitFn = FindCXAAtExit(M, TLI);
|
||||
if (CXAAtExitFn)
|
||||
LocalChange |= OptimizeEmptyGlobalCXXDtors(CXAAtExitFn);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user