1 ; Test 64-bit inequality comparisons that are really between a memory byte
4 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
6 ; Check the low end of the 8-bit unsigned range, with zero extension.
7 define double @f1(double %a, double %b, i8 *%ptr) {
13 %ext = zext i8 %val to i64
14 %cond = icmp ne i64 %ext, 0
15 %res = select i1 %cond, double %a, double %b
19 ; Check the high end of the 8-bit unsigned range, with zero extension.
20 define double @f2(double %a, double %b, i8 *%ptr) {
22 ; CHECK: cli 0(%r2), 255
26 %ext = zext i8 %val to i64
27 %cond = icmp ne i64 %ext, 255
28 %res = select i1 %cond, double %a, double %b
32 ; Check the next value up, with zero extension. The condition is always false.
33 define double @f3(double %a, double %b, i8 *%ptr) {
38 %ext = zext i8 %val to i64
39 %cond = icmp ne i64 %ext, 256
40 %res = select i1 %cond, double %a, double %b
44 ; Check comparisons with -1, with zero extension.
45 ; This condition is also always false.
46 define double @f4(double %a, double %b, i8 *%ptr) {
51 %ext = zext i8 %val to i64
52 %cond = icmp ne i64 %ext, -1
53 %res = select i1 %cond, double %a, double %b
57 ; Check comparisons with 0, using sign extension.
58 define double @f5(double %a, double %b, i8 *%ptr) {
60 ; CHECK: cli 0(%r2), 0
64 %ext = sext i8 %val to i64
65 %cond = icmp ne i64 %ext, 0
66 %res = select i1 %cond, double %a, double %b
70 ; Check the high end of the signed 8-bit range, using sign extension.
71 define double @f6(double %a, double %b, i8 *%ptr) {
73 ; CHECK: cli 0(%r2), 127
77 %ext = sext i8 %val to i64
78 %cond = icmp ne i64 %ext, 127
79 %res = select i1 %cond, double %a, double %b
83 ; Check the next value up, using sign extension.
84 ; The condition is always false.
85 define double @f7(double %a, double %b, i8 *%ptr) {
90 %ext = sext i8 %val to i64
91 %cond = icmp ne i64 %ext, 128
92 %res = select i1 %cond, double %a, double %b
96 ; Check comparisons with -1, using sign extension.
97 define double @f8(double %a, double %b, i8 *%ptr) {
99 ; CHECK: cli 0(%r2), 255
103 %ext = sext i8 %val to i64
104 %cond = icmp ne i64 %ext, -1
105 %res = select i1 %cond, double %a, double %b
109 ; Check the low end of the signed 8-bit range, using sign extension.
110 define double @f9(double %a, double %b, i8 *%ptr) {
112 ; CHECK: cli 0(%r2), 128
116 %ext = sext i8 %val to i64
117 %cond = icmp ne i64 %ext, -128
118 %res = select i1 %cond, double %a, double %b
122 ; Check the next value down, using sign extension.
123 ; The condition is always false.
124 define double @f10(double %a, double %b, i8 *%ptr) {
129 %ext = sext i8 %val to i64
130 %cond = icmp ne i64 %ext, -129
131 %res = select i1 %cond, double %a, double %b