[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / ThinLTO / X86 / reference_non_importable.ll
bloba488b2432f7bde5929dc5cfdaa781ad899b5c037
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %p/Inputs/reference_non_importable.ll -o %t2.bc
4 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \
5 ; RUN:     -r=%t1.bc,_foo,pxl \
6 ; RUN:     -r=%t1.bc,_b,pxl \
7 ; RUN:     -r=%t2.bc,_main,pxl \
8 ; RUN:     -r=%t2.bc,_foo,xl
13 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14 target triple = "x86_64-apple-macosx10.11.0"
16 ; We shouldn't promote the private because it has a section
17 ; RUN: llvm-dis < %t.o.1.2.internalize.bc | FileCheck  %s --check-prefix=PROMOTE
18 ; PROMOTE: @a = private global i8 0, section "__TEXT,__cstring,cstring_literals"
19 @a = private global i8 0, section "__TEXT,__cstring,cstring_literals"
20 @b = global i8 *@a
23 ; We want foo to be imported in the main module!
24 ; RUN: llvm-dis < %t.o.2.3.import.bc  | FileCheck  %s --check-prefix=IMPORT
25 ; IMPORT: define available_externally dso_local i8** @foo()
26 define i8 **@foo() {
27         ret i8 **@b