blob: fe4677a733e53848c5832f614808d4cdd224f16f [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001; RUN: llvm-as %s -o /dev/null
Duncan P. N. Exon Smith13f5c582014-08-19 21:08:27 +00002; RUN: verify-uselistorder %s
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00003
Chris Lattner6551ea92004-03-12 05:50:02 +00004
Tanya Lattner91974932008-02-16 23:27:24 +00005define i32 @test(i1 %C, i32 %V1, i32 %V2) {
6 %X = select i1 true, i1 false, i1 true ; <i1> [#uses=1]
7 %V = select i1 %X, i32 %V1, i32 %V2 ; <i32> [#uses=1]
8 ret i32 %V
Chris Lattner6551ea92004-03-12 05:50:02 +00009}
Tanya Lattner91974932008-02-16 23:27:24 +000010