mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
6517513ff1
Move LTO::run() to a "run" subcommand so that we can introduce new subcommands for testing different parts of the LTO implementation. This doesn't use llvm::cl subcommands because it doesn't appear to be currently possible to pass an argument not associated with a subcommand to a subcommand (e.g. -lto-use-new-pm, -mcpu=yonah). Differential Revision: https://reviews.llvm.org/D31410 llvm-svn: 299967
32 lines
1.1 KiB
LLVM
32 lines
1.1 KiB
LLVM
;; RUN: opt -module-summary %s -o %t1.bc
|
|
; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t1.bc
|
|
; RUN: llvm-lto -thinlto-action=internalize -thinlto-index %t.index.bc %t1.bc -o - | llvm-dis -o - | FileCheck %s --check-prefix=REGULAR
|
|
; RUN: llvm-lto -thinlto-action=internalize -thinlto-index %t.index.bc %t1.bc -o - --exported-symbol=foo | llvm-dis -o - | FileCheck %s --check-prefix=INTERNALIZE
|
|
|
|
; RUN: llvm-lto2 run %t1.bc -o %t.o -save-temps \
|
|
; RUN: -r=%t1.bc,_foo,pxl \
|
|
; RUN: -r=%t1.bc,_bar,pl \
|
|
; RUN: -r=%t1.bc,_linkonce_func,pl
|
|
; RUN: llvm-dis < %t.o.0.2.internalize.bc | FileCheck %s --check-prefix=INTERNALIZE
|
|
|
|
|
|
; REGULAR: define void @foo
|
|
; REGULAR: define void @bar
|
|
; REGULAR: define linkonce void @linkonce_func()
|
|
; INTERNALIZE: define void @foo
|
|
; INTERNALIZE: define internal void @bar
|
|
; INTERNALIZE: define internal void @linkonce_func()
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.11.0"
|
|
|
|
define void @foo() {
|
|
ret void
|
|
}
|
|
define void @bar() {
|
|
call void @linkonce_func()
|
|
ret void
|
|
}
|
|
define linkonce void @linkonce_func() {
|
|
ret void
|
|
} |