rust/tests/mir-opt/lower_slice_len.rs

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

16 lines
326 B
Rust
Raw Normal View History

2023-04-05 08:44:20 +00:00
// ignore-wasm32 compiled with panic=abort by default
// unit-test: LowerSliceLenCalls
2021-06-20 14:09:42 +00:00
// EMIT_MIR lower_slice_len.bound.LowerSliceLenCalls.diff
pub fn bound(index: usize, slice: &[u8]) -> u8 {
if index < slice.len() {
slice[index]
} else {
42
}
}
fn main() {
let _ = bound(1, &[1, 2, 3]);
}