Chris Lattner | 16ea43b | 2004-06-09 05:07:01 +0000 | [diff] [blame] | 1 | ; This is the sequence of stuff that the Java front-end expands for a single |
| 2 | ; <= comparison. Check to make sure we turn it into a <= (only) |
| 3 | |
Dan Gohman | f2f6ce6 | 2009-09-11 18:01:28 +0000 | [diff] [blame^] | 4 | ; RUN: opt < %s -instcombine -S | grep {%c3 = icmp sle i32 %A, %B} |
Chris Lattner | 16ea43b | 2004-06-09 05:07:01 +0000 | [diff] [blame] | 5 | |
Tanya Lattner | 76806b6 | 2008-03-09 08:16:40 +0000 | [diff] [blame] | 6 | define i1 @le(i32 %A, i32 %B) { |
| 7 | %c1 = icmp sgt i32 %A, %B ; <i1> [#uses=1] |
| 8 | %tmp = select i1 %c1, i32 1, i32 0 ; <i32> [#uses=1] |
| 9 | %c2 = icmp slt i32 %A, %B ; <i1> [#uses=1] |
| 10 | %result = select i1 %c2, i32 -1, i32 %tmp ; <i32> [#uses=1] |
| 11 | %c3 = icmp sle i32 %result, 0 ; <i1> [#uses=1] |
| 12 | ret i1 %c3 |
Chris Lattner | 16ea43b | 2004-06-09 05:07:01 +0000 | [diff] [blame] | 13 | } |
| 14 | |