llvm-6502/test/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll
Chris Lattner ca29178bb9 This node should not be incomplete!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6984 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-29 22:35:55 +00:00

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
}