blob: cf29f8d9bf24618f42701b2c1dd4b087ab508e6f [file] [log] [blame]
Chandler Carrutha5a29f92012-07-02 12:47:22 +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}