You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
371 B
18 lines
371 B
; RUN: llvm-as %s -o %t.o
|
|
|
|
; RUN: %gold -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
|
|
}
|