mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +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
29 lines
931 B
LLVM
29 lines
931 B
LLVM
; RUN: opt -module-summary %s -o %t1.bc
|
|
; RUN: opt -module-summary %p/Inputs/reference_non_importable.ll -o %t2.bc
|
|
|
|
; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \
|
|
; RUN: -r=%t1.bc,_foo,pxl \
|
|
; RUN: -r=%t1.bc,_b,pxl \
|
|
; RUN: -r=%t2.bc,_main,pxl \
|
|
; RUN: -r=%t2.bc,_foo,xl
|
|
|
|
|
|
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.11.0"
|
|
|
|
; We shouldn't promote the private because it has a section
|
|
; RUN: llvm-dis < %t.o.0.2.internalize.bc | FileCheck %s --check-prefix=PROMOTE
|
|
; PROMOTE: @a = private global i8 0, section "__TEXT,__cstring,cstring_literals"
|
|
@a = private global i8 0, section "__TEXT,__cstring,cstring_literals"
|
|
@b = global i8 *@a
|
|
|
|
|
|
; We want foo to be imported in the main module!
|
|
; RUN: llvm-dis < %t.o.1.3.import.bc | FileCheck %s --check-prefix=IMPORT
|
|
; IMPORT: define available_externally i8** @foo()
|
|
define i8 **@foo() {
|
|
ret i8 **@b
|
|
}
|