llvm-6502/test/Analysis/Andersens/basictest.ll
Dan Gohman b1e1e82c54 Change these tests to feed the assembly files to opt directly, instead
of using llvm-as, now that opt supports this.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81226 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-08 16:50:01 +00:00

29 lines
484 B
LLVM

; RUN: opt %s -anders-aa -aa-eval 2>/dev/null
define void @test1() {
%X = malloc i32*
%Y = malloc i32
%Z = ptrtoint i32* %Y to i32
%W = inttoptr i32 %Z to i32*
store i32* %W, i32** %X
ret void
}
define void @test2(i32* %P) {
%X = malloc i32*
%Y = malloc i32
store i32* %P, i32** %X
ret void
}
define internal i32 *@test3(i32* %P) {
ret i32* %P
}
define void @test4() {
%X = malloc i32
%Y = call i32* @test3(i32* %X)
%ZZ = getelementptr i32* null, i32 17
ret void
}