mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
0fdee121f7
"external" even when doing lazy bitcode loading. This was broken because a function that is not materialized fails the !isDeclaration() test. llvm-svn: 114666
28 lines
783 B
LLVM
28 lines
783 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 void @foo() {
|
|
; CHECK: ret void
|
|
; CHECK: }
|
|
|
|
; The linkonce_odr linkage for foo() should be changed to external linkage.
|
|
; DELETE: declare void @foo()
|
|
; DELETE: define void @bar() {
|
|
; DELETE: call void @foo()
|
|
; DELETE: ret void
|
|
; DELETE: }
|
|
|
|
define linkonce_odr void @foo() {
|
|
ret void
|
|
}
|
|
define void @bar() {
|
|
call void @foo()
|
|
ret void
|
|
}
|