blob: f99d3053c674ea6a142eb610dffbf959338be82c [file] [log] [blame]
Dan Gohman5bb7c7c2009-09-08 22:34:10 +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}