Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 1 | ; Do setup work for all below tests: generate bitcode and combined index |
| 2 | ; RUN: opt -module-summary %s -o %t1.bc |
| 3 | ; RUN: opt -module-summary %p/Inputs/export.ll -o %t2.bc |
| 4 | ; RUN: llvm-lto -thinlto-action=thinlink -o %t3.bc %t1.bc %t2.bc |
| 5 | |
| 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 %s |
Rafael Espindola | 9fbc040 | 2018-01-18 02:08:23 +0000 | [diff] [blame^] | 8 | ; CHECK-DAG: @staticvar.llvm.0 = hidden global |
| 9 | ; CHECK-DAG: define hidden void @staticfunc.llvm.0 |
Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 10 | |
| 11 | target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" |
| 12 | target triple = "x86_64-apple-macosx10.11.0" |
| 13 | |
| 14 | @staticvar = internal global i32 1, align 4 |
| 15 | |
| 16 | define void @callstaticfunc() #0 { |
| 17 | entry: |
| 18 | call void @staticfunc() |
| 19 | ret void |
| 20 | } |
| 21 | |
| 22 | define internal void @staticfunc() #0 { |
| 23 | entry: |
| 24 | %0 = load i32, i32* @staticvar, align 4 |
| 25 | ret void |
| 26 | } |