Xamarin Public Jenkins (auto-signing) 279aa8f685 Imported Upstream version 5.18.0.246
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
2019-01-23 08:21:40 +00:00

28 lines
487 B
LLVM

; runtime library implementations should be added to llvm.compiler.used
; RUN: llvm-as <%s >%t1
; RUN: llvm-lto -o %t2 %t1
; RUN: llvm-nm -no-sort %t2 | FileCheck %s -check-prefix=KEEP -check-prefix=LOSE
target triple = "x86_64-apple-darwin9"
; KEEP-LABEL: _puts
define void @puts() {
ret void
}
; KEEP-LABEL: ___divti3
define void @__divti3() {
ret void
}
; KEEP-LABEL: _memset
define void @memset() {
ret void
}
; LOSE-NOT: _myprintf
define void @myprintf() {
ret void
}