rust/tests/codegen/issues/issue-101814.rs
Nikita Popov ec635c002b Add ignore-debug to two tests
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.
2023-04-11 11:22:15 +02:00

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
}