blob: c3eb1a5968af4b692fc2d92c354aa5be9a45e0bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// This test checks that bounds checks are elided when
// index is part of a (x | y) < C style condition
//@ compile-flags: -O
#![crate_type = "lib"]
// CHECK-LABEL: @get
#[no_mangle]
pub fn get(array: &[u8; 8], x: usize, y: usize) -> u8 {
if x > 7 || y > 7 {
0
} else {
// CHECK-NOT: panic_bounds_check
array[y]
}
}
|