blob: 255b12092a77ddca97d25aa2c2a34ac306b20ee9 [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; PR1114
3
4declare i1 @foo()
5
6define i32 @test(i32* %A, i32* %B) {
7 %a = load i32* %A
8 %b = load i32* %B
9 %cond = call i1 @foo()
10 %c = select i1 %cond, i32 %a, i32 %b
11 ret i32 %c
12}