blob: 2d3f412d256d9324d29c606c35dbc0ffe3e0c0b2 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001; RUN: llvm-as %s -o /dev/null
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