mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
This node should not be incomplete!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6984 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9c95e52c08
commit
ca29178bb9
26
test/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll
Normal file
26
test/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll
Normal file
@ -0,0 +1,26 @@
|
||||
; 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
|
||||
}
|
18
test/Analysis/DSGraph/PhysicalSubtyping.ll
Normal file
18
test/Analysis/DSGraph/PhysicalSubtyping.ll
Normal file
@ -0,0 +1,18 @@
|
||||
; Test to check for support for "physical subtyping"
|
||||
;
|
||||
; RUN: analyze %s -datastructure-gc -dsgc-abort-if-any-collapsed
|
||||
;
|
||||
%S = type { int }
|
||||
%T = type { int, float, double }
|
||||
|
||||
int %main() {
|
||||
%A = alloca %S
|
||||
%Ap = getelementptr %S* %A, long 0, ubyte 0
|
||||
%B = alloca %T
|
||||
%Bp = getelementptr %T* %B, long 0, ubyte 0
|
||||
%C = alloca int*
|
||||
|
||||
store int* %Ap, int** %C
|
||||
store int* %Bp, int** %C
|
||||
ret int 0
|
||||
}
|
Loading…
Reference in New Issue
Block a user