mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
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
|
||
|
}
|