summaryrefslogtreecommitdiff
path: root/test/Analysis/Andersens/2008-03-19-External.ll
blob: f99d3053c674ea6a142eb610dffbf959338be82c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt %s -anders-aa -gvn -S | not grep undef
; PR2160

declare void @f(i32*)

define i32 @g() {
entry:
        %tmp = alloca i32               ; <i32*> [#uses=2]
        call void @f( i32* %tmp )
        %tmp2 = load i32* %tmp          ; <i32> [#uses=1]
        ret i32 %tmp2
}