summaryrefslogtreecommitdiffstats
path: root/tests/codegen/issues/issue-101814.rs
blob: 13796352c0285061c51bdb9892bff2131691e0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// compile-flags: -O
// min-llvm-version: 16
// ignore-debug: the debug assertions get in the way

#![crate_type = "lib"]

#[no_mangle]
pub fn test(a: [i32; 10]) -> i32 {
    // CHECK-LABEL: @test(
    // CHECK: [[L1:%.+]] = load i32
    // CHECK: [[L2:%.+]] = load i32
    // CHECK: [[R:%.+]] = add i32 [[L1]], [[L2]]
    // CHECK: ret i32 [[R]]
    let mut sum = 0;
    for v in a.iter().skip(8) {
        sum += v;
    }

    sum
}