@@ -155,52 +155,52 @@ func ui32x8() {
155
155
156
156
// Signed 64-bit comparison with unsigned 8-bit immediate.
157
157
func si64xu8 (x chan int64 ) {
158
- // s390x:"CLGIJ\t[$]8, R[0-9]+, [$]128, "
159
- for <- x == 128 {
160
- dummy ()
161
- }
162
-
163
- // s390x:"CLGIJ\t[$]6, R[0-9]+, [$]255, "
164
- for <- x != 255 {
165
- dummy ()
166
- }
158
+ // s390x:"CLGIJ\t[$]8, R[0-9]+, [$]128, "
159
+ for <- x == 128 {
160
+ dummy ()
161
+ }
162
+
163
+ // s390x:"CLGIJ\t[$]6, R[0-9]+, [$]255, "
164
+ for <- x != 255 {
165
+ dummy ()
166
+ }
167
167
}
168
168
169
169
// Signed 32-bit comparison with unsigned 8-bit immediate.
170
170
func si32xu8 (x chan int32 ) {
171
- // s390x:"CLIJ\t[$]8, R[0-9]+, [$]255, "
172
- for <- x == 255 {
173
- dummy ()
174
- }
175
-
176
- // s390x:"CLIJ\t[$]6, R[0-9]+, [$]128, "
177
- for <- x != 128 {
178
- dummy ()
179
- }
171
+ // s390x:"CLIJ\t[$]8, R[0-9]+, [$]255, "
172
+ for <- x == 255 {
173
+ dummy ()
174
+ }
175
+
176
+ // s390x:"CLIJ\t[$]6, R[0-9]+, [$]128, "
177
+ for <- x != 128 {
178
+ dummy ()
179
+ }
180
180
}
181
181
182
182
// Unsigned 64-bit comparison with signed 8-bit immediate.
183
183
func ui64xu8 (x chan uint64 ) {
184
- // s390x:"CGIJ\t[$]8, R[0-9]+, [$]-1, "
185
- for <- x == ^ uint64 (0 ) {
186
- dummy ()
187
- }
188
-
189
- // s390x:"CGIJ\t[$]6, R[0-9]+, [$]-128, "
190
- for <- x != ^ uint64 (127 ) {
191
- dummy ()
192
- }
184
+ // s390x:"CGIJ\t[$]8, R[0-9]+, [$]-1, "
185
+ for <- x == ^ uint64 (0 ) {
186
+ dummy ()
187
+ }
188
+
189
+ // s390x:"CGIJ\t[$]6, R[0-9]+, [$]-128, "
190
+ for <- x != ^ uint64 (127 ) {
191
+ dummy ()
192
+ }
193
193
}
194
194
195
195
// Unsigned 32-bit comparison with signed 8-bit immediate.
196
196
func ui32xu8 (x chan uint32 ) {
197
- // s390x:"CIJ\t[$]8, R[0-9]+, [$]-128, "
198
- for <- x == ^ uint32 (127 ) {
199
- dummy ()
200
- }
201
-
202
- // s390x:"CIJ\t[$]6, R[0-9]+, [$]-1, "
203
- for <- x != ^ uint32 (0 ) {
204
- dummy ()
205
- }
197
+ // s390x:"CIJ\t[$]8, R[0-9]+, [$]-128, "
198
+ for <- x == ^ uint32 (127 ) {
199
+ dummy ()
200
+ }
201
+
202
+ // s390x:"CIJ\t[$]6, R[0-9]+, [$]-1, "
203
+ for <- x != ^ uint32 (0 ) {
204
+ dummy ()
205
+ }
206
206
}
0 commit comments