mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
12 lines
168 B
LLVM
12 lines
168 B
LLVM
|
; It looks like the assembler is not forward resolving the function declaraion
|
||
|
; correctly.
|
||
|
|
||
|
void "test"()
|
||
|
begin
|
||
|
call void %foo()
|
||
|
ret void
|
||
|
end
|
||
|
|
||
|
declare void "foo"()
|
||
|
|