blob: f204c95050670441455feb723fedc4d8aa87feaa [file] [log] [blame]
Tanya Lattner91974932008-02-16 23:27:24 +00001; RUN: llvm-as < %s -o /dev/null -f
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00002
Chris Lattner6551ea92004-03-12 05:50:02 +00003
Tanya Lattner91974932008-02-16 23:27:24 +00004define i32 @test(i1 %C, i32 %V1, i32 %V2) {
5 %X = select i1 true, i1 false, i1 true ; <i1> [#uses=1]
6 %V = select i1 %X, i32 %V1, i32 %V2 ; <i32> [#uses=1]
7 ret i32 %V
Chris Lattner6551ea92004-03-12 05:50:02 +00008}
Tanya Lattner91974932008-02-16 23:27:24 +00009