]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/slice-ref-equality.rs
Rollup merge of #87385 - Aaron1011:final-enable-semi, r=petrochenkov
[rust.git] / src / test / codegen / slice-ref-equality.rs
1 // compile-flags: -C opt-level=3
2
3 #![crate_type = "lib"]
4
5 // #71602 reported a simple array comparison just generating a loop.
6 // This was originally fixed by ensuring it generates a single bcmp,
7 // but we now generate it as a load instead. `is_zero_slice` was
8 // tweaked to still test the case of comparison against a slice,
9 // and `is_zero_array` tests the new array-specific behaviour.
10
11 // CHECK-LABEL: @is_zero_slice
12 #[no_mangle]
13 pub fn is_zero_slice(data: &[u8; 4]) -> bool {
14     // CHECK: :
15     // CHECK-NEXT: %{{.+}} = getelementptr {{.+}}
16     // CHECK-NEXT: %[[BCMP:.+]] = tail call i32 @{{bcmp|memcmp}}({{.+}})
17     // CHECK-NEXT: %[[EQ:.+]] = icmp eq i32 %[[BCMP]], 0
18     // CHECK-NEXT: ret i1 %[[EQ]]
19     &data[..] == [0; 4]
20 }
21
22 // CHECK-LABEL: @is_zero_array
23 #[no_mangle]
24 pub fn is_zero_array(data: &[u8; 4]) -> bool {
25     // CHECK: start:
26     // CHECK-NEXT: %[[PTR:.+]] = bitcast [4 x i8]* {{.+}} to i32*
27     // CHECK-NEXT: %[[LOAD:.+]] = load i32, i32* %[[PTR]], align 1
28     // CHECK-NEXT: %[[EQ:.+]] = icmp eq i32 %[[LOAD]], 0
29     // CHECK-NEXT: ret i1 %[[EQ]]
30     *data == [0; 4]
31 }