brintos

brintos / llvm-project-archived public Read only

0
0
Text · 871 B · 2de3b7f Raw
27 lines · plain
1; Do setup work for all below tests: generate bitcode and combined index2; RUN: opt -module-summary %s -o %t1.bc3; RUN: opt -module-summary %p/Inputs/export.ll -o %t2.bc4; RUN: llvm-lto -thinlto-action=thinlink -o %t3.bc %t1.bc %t2.bc5 6; Ensure statics are promoted/renamed correctly from this file.7; RUN: llvm-lto -thinlto-action=promote %t1.bc -thinlto-index=%t3.bc -o - | llvm-dis -o - | FileCheck %s8; CHECK-DAG: @staticvar.llvm.0 = hidden global9; CHECK-DAG: define hidden void @staticfunc.llvm.010 11target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"12target triple = "x86_64-apple-macosx10.11.0"13 14@staticvar = internal global i32 1, align 415 16define void @callstaticfunc() #0 {17entry:18  call void @staticfunc()19  ret void20}21 22define internal void @staticfunc() #0 {23entry:24  %0 = load i32, ptr @staticvar, align 425  ret void26}27