summaryrefslogtreecommitdiffstats
path: root/tests/codegen/issues/issue-101048.rs
blob: e4712cf9cb3f66bc35ac8052ce9ab594edc7b10d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags: -O

#![crate_type = "lib"]

#[no_mangle]
pub fn all_zero(data: &[u64]) -> bool {
    // CHECK-LABEL: @all_zero(
    // CHECK: [[PHI:%.*]] = phi i1
    // CHECK-NOT: phi i8
    // CHECK-NOT: zext
    data.iter().copied().fold(true, |acc, x| acc & (x == 0))
}