Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
|
@ -1,17 +0,0 @@
|
|||
// 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]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue