mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
e21839b377
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227564 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
487 B
LLVM
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
|
|
}
|
|
|