diff options
author | Manman Ren <mren@apple.com> | 2013-05-14 21:52:44 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2013-05-14 21:52:44 +0000 |
commit | 5150270d071f05c6ea1fd26ef448954ddb5746dc (patch) | |
tree | 2e628021377421f2d8b9834f4a579363766736ca /test/Transforms | |
parent | e83a6f32a408d16f1fa07c658236eb226ea332fb (diff) | |
download | external_llvm-5150270d071f05c6ea1fd26ef448954ddb5746dc.zip external_llvm-5150270d071f05c6ea1fd26ef448954ddb5746dc.tar.gz external_llvm-5150270d071f05c6ea1fd26ef448954ddb5746dc.tar.bz2 |
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
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/GlobalOpt/atexit.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Transforms/GlobalOpt/atexit.ll b/test/Transforms/GlobalOpt/atexit.ll new file mode 100644 index 0000000..dbcd0d7 --- /dev/null +++ b/test/Transforms/GlobalOpt/atexit.ll @@ -0,0 +1,6 @@ +; RUN: opt < %s -globalopt -S | FileCheck %s + +; CHECK: ModuleID +define internal hidden i32 @__cxa_atexit(void (i8*)* nocapture %func, i8* nocapture %arg, i8* nocapture %dso_handle) nounwind readnone optsize noimplicitfloat { + unreachable +} |