Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

25 lines
547 B
LLVM

; RUN: llvm-extract -func foo -S < %s | FileCheck %s
; RUN: llvm-extract -delete -func foo -S < %s | FileCheck --check-prefix=DELETE %s
; Test that linkonce definitions are mapped to weak so that they are not
; dropped.
; CHECK: @bar = external global i32
; CHECK: define weak i32* @foo() {
; CHECK-NEXT: ret i32* @bar
; CHECK-NEXT: }
; DELETE: @bar = weak global i32 42
; DELETE: declare i32* @foo()
@bar = linkonce global i32 42
define linkonce i32* @foo() {
ret i32* @bar
}
define void @g() {
call i32* @foo()
ret void
}