mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
22 lines
436 B
Rust
22 lines
436 B
Rust
// compile-flags: -O
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
// CHECK-LABEL: @trim_in_place
|
|
#[no_mangle]
|
|
pub fn trim_in_place(a: &mut &[u8]) {
|
|
while a.first() == Some(&42) {
|
|
// CHECK-NOT: slice_index_order_fail
|
|
*a = &a[1..];
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @trim_in_place2
|
|
#[no_mangle]
|
|
pub fn trim_in_place2(a: &mut &[u8]) {
|
|
while let Some(&42) = a.first() {
|
|
// CHECK-NOT: slice_index_order_fail
|
|
*a = &a[2..];
|
|
}
|
|
}
|