1 ; Test 32-bit unsigned comparisons in which the second operand is constant.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 ; Check a value near the low end of the range. We use signed forms for
6 ; comparisons with zero, or things that are equivalent to them.
7 define double @f1(double %a, double %b, i32 %i1) {
12 %cond = icmp ugt i32 %i1, 1
13 %res = select i1 %cond, double %a, double %b
17 ; Check the top of the CLIJ range.
18 define double @f2(double %a, double %b, i32 %i1) {
20 ; CHECK: clijl %r2, 255
23 %cond = icmp ult i32 %i1, 255
24 %res = select i1 %cond, double %a, double %b
28 ; Check the next value up, which needs a separate comparison.
29 define double @f3(double %a, double %b, i32 %i1) {
31 ; CHECK: clfi %r2, 256
35 %cond = icmp ult i32 %i1, 256
36 %res = select i1 %cond, double %a, double %b
40 ; Check a value near the high end of the range.
41 define double @f4(double %a, double %b, i32 %i1) {
43 ; CHECK: clfi %r2, 4294967280
47 %cond = icmp ult i32 %i1, 4294967280
48 %res = select i1 %cond, double %a, double %b