mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 23:09:03 -04:00

If a regular LTO module has a summary index, then instead of linking it into the combined regular LTO module right away, add it to the combined summary index and associate it with a special module that represents the combined regular LTO module. Any such modules are linked during LTO::run(), at which time we use the results of summary-based dead stripping to control whether to link prevailing symbols. Differential Revision: https://reviews.llvm.org/D33922 llvm-svn: 305482
23 lines
628 B
LLVM
23 lines
628 B
LLVM
; REQUIRES: x86-registered-target
|
|
|
|
; RUN: opt -module-summary -o %t1.o %s
|
|
; RUN: llvm-lto -thinlto -o %t %t1.o
|
|
|
|
; RUN: opt -module-summary -o %t2.o %S/Inputs/thinlto-multi-module.ll
|
|
; RUN: llvm-cat -b -o %t1cat.o %t2.o %t1.o
|
|
; RUN: cp %t1cat.o %t1.o
|
|
; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t3.o -x ir %t1.o -c -fthinlto-index=%t.thinlto.bc
|
|
; RUN: llvm-nm %t3.o | FileCheck --check-prefix=CHECK-OBJ %s
|
|
; CHECK-OBJ: T f1
|
|
; CHECK-OBJ: U f2
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
declare void @f2()
|
|
|
|
define void @f1() {
|
|
call void @f2()
|
|
ret void
|
|
}
|