mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
27 lines
367 B
LLVM
27 lines
367 B
LLVM
|
; RUN: analyze %s -datastructure-gc -dsgc-dspass=td -dsgc-abort-if-incomplete=Ptr
|
||
|
|
||
|
|
||
|
|
||
|
int %main() {
|
||
|
call void %A()
|
||
|
call void %B()
|
||
|
ret int 0
|
||
|
}
|
||
|
|
||
|
internal void %A() {
|
||
|
%V = malloc int
|
||
|
call void %Callee(int* %V)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
internal void %B() {
|
||
|
%V = malloc int
|
||
|
call void %Callee(int* %V)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
internal void %Callee(int* %Ptr) {
|
||
|
load int* %Ptr
|
||
|
ret void
|
||
|
}
|