25 lines · plain
1; RUN: opt -module-summary %s -o %t1.bc2; RUN: opt -module-summary %p/Inputs/index-const-prop-define-g.ll -o %t2.bc3; RUN: opt -module-summary %p/Inputs/index-const-prop-full-lto.ll -o %t3.bc4; 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 %t47; RUN: llvm-dis %t4.2.3.import.bc -o - | FileCheck %s8 9; All references from functions in full LTO module are not constant.10; We cannot internalize @g11; CHECK: @g = available_externally global i32 4212 13target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"14target triple = "x86_64-unknown-linux-gnu"15 16declare i32 @foo()17@g = external global i3218 19define i32 @main() {20 %v = call i32 @foo()21 %v2 = load i32, ptr @g22 %v3 = add i32 %v, %v223 ret i32 %v324}25