mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 07:52:55 +01:00
7c96927f9b
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 llvm-svn: 181838
7 lines
241 B
LLVM
7 lines
241 B
LLVM
; 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
|
|
}
|