mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
ec635c002b
These don't optimize with debug assertions. For one of them, this is due to the new alignment checks, for the other I'm not sure what specifically blocks it.
21 lines
435 B
Rust
21 lines
435 B
Rust
// 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
|
|
}
|