Skip to content

Commit

Permalink
Add codegen test checking binary_search allows eliding bound checks
Browse files Browse the repository at this point in the history
  • Loading branch information
SkiFire13 committed Mar 6, 2021
1 parent f43c022 commit c9d04c2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/test/codegen/binary-search-index-no-bound-check.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// min-llvm-version: 11.0.0
// compile-flags: -O
// ignore-debug: the debug assertions get in the way
#![crate_type = "lib"]

// Make sure no bounds checks are emitted when slicing or indexing
// with an index from `binary_search`.

// CHECK-LABEL: @binary_search_index_no_bounds_check
#[no_mangle]
pub fn binary_search_index_no_bounds_check(s: &[u8]) -> u8 {
// CHECK-NOT: panic
// CHECK-NOT: slice_index_len_fail
if let Ok(idx) = s.binary_search(&b'\\') {
s[idx]
} else {
42
}
}

0 comments on commit c9d04c2

Please sign in to comment.