rust/tests/codegen/issues/issue-101814.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
435 B
Rust
Raw Normal View History

// 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
}