mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 23:31:32 +00:00
14 lines
223 B
LLVM
14 lines
223 B
LLVM
|
; RUN: llvm-as < %s | opt -deadargelim -disable-output
|
||
|
|
||
|
implementation
|
||
|
|
||
|
internal csretcc void %build_delaunay({int}* %agg.result) {
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
void %test() {
|
||
|
call csretcc void %build_delaunay({int}* null)
|
||
|
ret void
|
||
|
}
|
||
|
|