mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
9cb90e7c15
split module can see each other. If it is keeping a symbol that already has a non local linkage, it doesn't need to change it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166908 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
817 B
LLVM
29 lines
817 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() {
|
|
; 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: define void @bar() {
|
|
; DELETE: call void @foo()
|
|
; DELETE: ret void
|
|
; DELETE: }
|
|
|
|
define private void @foo() {
|
|
ret void
|
|
}
|
|
define void @bar() {
|
|
call void @foo()
|
|
ret void
|
|
}
|