blob: 1154bb481d30a268fe0b89a5a27295d2f4a67436 [file] [log] [blame]
Dan Gohman18800922009-09-11 18:01:28 +00001; RUN: opt < %s -instcombine -S | \
Reid Spencer3fc53d62007-04-14 22:51:29 +00002; RUN: grep {ret i1 false}
Tanya Lattner5640bd12008-03-01 09:15:35 +00003
4define i1 @test(i1 %V) {
5 %Y = icmp ult i1 %V, false ; <i1> [#uses=1]
6 ret i1 %Y
Chris Lattner39884512004-08-11 00:49:50 +00007}
8