rust/tests/codegen/enum/enum-bounds-check-derived-idx.rs

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

25 lines
519 B
Rust
Raw Normal View History

2020-08-25 04:44:18 -05:00
// This test checks an optimization that is not guaranteed to work. This test case should not block
// a future LLVM update.
//@ compile-flags: -O
#![crate_type = "lib"]
pub enum Bar {
A = 1,
B = 3,
}
// CHECK-LABEL: @lookup_inc
#[no_mangle]
pub fn lookup_inc(buf: &[u8; 5], f: Bar) -> u8 {
2022-10-26 09:50:11 -05:00
// CHECK-NOT: panic_bounds_check
2020-08-25 04:44:18 -05:00
buf[f as usize + 1]
}
// CHECK-LABEL: @lookup_dec
#[no_mangle]
pub fn lookup_dec(buf: &[u8; 5], f: Bar) -> u8 {
2022-10-26 09:50:11 -05:00
// CHECK-NOT: panic_bounds_check
2020-08-25 04:44:18 -05:00
buf[f as usize - 1]
}