mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Add a test showing the interaction of linker scripts and plugin.
In particular, the linker script is processed early enough for function g to be internalized. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214916 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fadc91beec
commit
936a1b573b
5
test/tools/gold/Inputs/linker-script.export
Normal file
5
test/tools/gold/Inputs/linker-script.export
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
global:
|
||||
f;
|
||||
local: *;
|
||||
};
|
17
test/tools/gold/linker-script.ll
Normal file
17
test/tools/gold/linker-script.ll
Normal file
@ -0,0 +1,17 @@
|
||||
; 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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user