blob: a9731037669bc99e8fc49d5a41ea42e2cf2f2fca [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -anders-aa -gvn -S | not grep undef
Duncan Sandsb6246612008-03-21 20:22:11 +00002; PR2160
3
4declare void @f(i32*)
5
6define i32 @g() {
7entry:
8 %tmp = alloca i32 ; <i32*> [#uses=2]
9 call void @f( i32* %tmp )
10 %tmp2 = load i32* %tmp ; <i32> [#uses=1]
11 ret i32 %tmp2
12}