mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
11 lines
159 B
LLVM
11 lines
159 B
LLVM
|
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
|
||
|
|
||
|
|
||
|
void %test() {
|
||
|
call int(...)* %test()
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare int %test(...)
|
||
|
|