blob: fd36d86a94844d2734cdcdfe4c1666481c87b3b1 [file] [log] [blame]
Dan Gohman18800922009-09-11 18:01:28 +00001; RUN: opt < %s -instcombine -S | grep {ret i1 false}
Chris Lattnerda435912008-10-11 22:55:00 +00002; PR2697
3
4define i1 @x(i32 %x) nounwind {
5 %div = sdiv i32 %x, 65536 ; <i32> [#uses=1]
6 %cmp = icmp slt i32 %div, -65536
7 ret i1 %cmp
8}