mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 06:06:32 +00:00
f2f6ce65b7
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
29 lines
486 B
LLVM
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
|
|
}
|