mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
3457994310
While updating clang tests for having clang set dso_local I noticed that: - There are *a lot* of tests to update. - Many of the updates are redundant. They are redundant because a GV is "obviously dso_local". This patch starts formalizing that a bit by requiring that internal and private GVs be dso_local too. Since they all are, we don't have to print dso_local to the textual representation, making it a bit more compact and easier to read. llvm-svn: 322317
27 lines
859 B
LLVM
27 lines
859 B
LLVM
; Do setup work for all below tests: generate bitcode and combined index
|
|
; RUN: opt -module-summary %s -o %t1.bc
|
|
; RUN: opt -module-summary %p/Inputs/export.ll -o %t2.bc
|
|
; RUN: llvm-lto -thinlto-action=thinlink -o %t3.bc %t1.bc %t2.bc
|
|
|
|
; Ensure statics are promoted/renamed correctly from this file.
|
|
; RUN: llvm-lto -thinlto-action=promote %t1.bc -thinlto-index=%t3.bc -o - | llvm-dis -o - | FileCheck %s
|
|
; CHECK-DAG: @staticvar.llvm.0 = dso_local hidden global
|
|
; CHECK-DAG: define dso_local hidden void @staticfunc.llvm.0
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.11.0"
|
|
|
|
@staticvar = internal global i32 1, align 4
|
|
|
|
define void @callstaticfunc() #0 {
|
|
entry:
|
|
call void @staticfunc()
|
|
ret void
|
|
}
|
|
|
|
define internal void @staticfunc() #0 {
|
|
entry:
|
|
%0 = load i32, i32* @staticvar, align 4
|
|
ret void
|
|
}
|