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-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14 target triple = "x86_64-unknown-linux-gnu"
17 @g = external global i32
21 %v2 = load i32, i32* @g