mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
13 lines
199 B
LLVM
13 lines
199 B
LLVM
|
; RUN: as < %s > Output/%s.out1.bc
|
||
|
; RUN: echo "%S = type int" | as > Output/%s.out2.bc
|
||
|
; RUN: link Output/%s.out[21].bc
|
||
|
|
||
|
%S = type opaque
|
||
|
|
||
|
void %foo(int* %V) {
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare void %foo(%S*)
|
||
|
|