llvm-6502/test/Analysis/Andersens/basictest.ll
Dan Gohman f2f6ce65b7 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
input filename so that opt doesn't print the input filename in the
output so that grep lines in the tests don't unintentionally match
strings in the input filename.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
2009-09-11 18:01:28 +00:00

29 lines
486 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
}