mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
0c9f0646f7
In particular, the linker script is processed early enough for function g to be internalized. llvm-svn: 214916
18 lines
368 B
LLVM
18 lines
368 B
LLVM
; RUN: llvm-as %s -o %t.o
|
|
|
|
; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=emit-llvm \
|
|
; RUN: -shared %t.o -o %t2.o \
|
|
; RUN: -version-script=%p/Inputs/linker-script.export
|
|
; RUN: llvm-dis %t2.o -o - | FileCheck %s
|
|
|
|
; CHECK: define void @f()
|
|
define void @f() {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: define internal void @g()
|
|
define void @g() {
|
|
ret void
|
|
}
|