summaryrefslogtreecommitdiffstats
path: root/tests/codegen/lib-optimizations/iter-sum.rs
blob: ff7ca6ef6c11ed3049136167a80992d61168951a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// ignore-debug: the debug assertions get in the way
// compile-flags: -O
// only-x86_64 (vectorization varies between architectures)
#![crate_type = "lib"]


// Ensure that slice + take + sum gets vectorized.
// Currently this relies on the slice::Iter::try_fold implementation
// CHECK-LABEL: @slice_take_sum
#[no_mangle]
pub fn slice_take_sum(s: &[u64], l: usize) -> u64 {
    // CHECK: vector.body:
    // CHECK: ret
    s.iter().take(l).sum()
}