mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
bfea7bc2f8
This is similar to r322317, but for visibility. It is not as neat because we have to special case extern_weak. The idea is the same as the previous change, make the transition to explicit dso_local easier for the frontends. With this they only have to add dso_local to symbols where we need some external information to decide if it is dso_local (like it being part of an ELF executable). llvm-svn: 322806
32 lines
877 B
LLVM
32 lines
877 B
LLVM
; RUN: llvm-extract -func foo -S < %s | FileCheck %s
|
|
; RUN: llvm-extract -delete -func foo -S < %s | FileCheck --check-prefix=DELETE %s
|
|
; RUN: llvm-as < %s > %t
|
|
; RUN: llvm-extract -func foo -S %t | FileCheck %s
|
|
; RUN: llvm-extract -delete -func foo -S %t | FileCheck --check-prefix=DELETE %s
|
|
|
|
; llvm-extract uses lazy bitcode loading, so make sure it correctly reads
|
|
; from bitcode files in addition to assembly files.
|
|
|
|
; CHECK: define hidden void @foo() comdat($x) {
|
|
; CHECK: ret void
|
|
; CHECK: }
|
|
|
|
; The private linkage for foo() should be changed to external linkage and
|
|
; hidden visibility added.
|
|
; DELETE: declare hidden void @foo()
|
|
; DELETE-NOT: comdat
|
|
; DELETE: define void @bar() {
|
|
; DELETE: call void @foo()
|
|
; DELETE: ret void
|
|
; DELETE: }
|
|
|
|
$x = comdat any
|
|
|
|
define private void @foo() comdat($x) {
|
|
ret void
|
|
}
|
|
define void @bar() {
|
|
call void @foo()
|
|
ret void
|
|
}
|