mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
62a4b839a6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6272 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
166 B
LLVM
12 lines
166 B
LLVM
; RUN: as < %s | opt -funcresolve -disable-output
|
|
|
|
void %foo(int, int) {
|
|
ret void
|
|
}
|
|
declare void %foo(...)
|
|
|
|
void %test() {
|
|
call void(...)* %foo(int 7)
|
|
ret void
|
|
}
|