[yaml2obj] - Allow placing local symbols after globals.
[llvm-complete.git] / test / ThinLTO / X86 / index-const-prop-full-lto.ll
blob26fe4d644b72486750dfdf5d8a22329671338f86
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %p/Inputs/index-const-prop-define-g.ll -o %t2.bc
3 ; RUN: opt -module-summary %p/Inputs/index-const-prop-full-lto.ll -o %t3.bc
4 ; RUN: llvm-lto2 run -save-temps %t2.bc -r=%t2.bc,g,pl \
5 ; RUN:                 %t1.bc -r=%t1.bc,foo,l -r=%t1.bc,main,plx -r=%t1.bc,g, \
6 ; RUN:                 %t3.bc -r=%t3.bc,foo,pl -r=%t3.bc,g, -o %t4
7 ; RUN: llvm-dis %t4.2.3.import.bc -o - | FileCheck %s
9 ; All references from functions in full LTO module are not constant.
10 ; We cannot internalize @g
11 ; CHECK: @g = available_externally dso_local global i32 42
13 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
14 target triple = "x86_64-unknown-linux-gnu"
16 declare i32 @foo()
17 @g = external global i32
19 define i32 @main() {
20   %v = call i32 @foo()
21   %v2 = load i32, i32* @g
22   %v3 = add i32 %v, %v2
23   ret i32 %v3