forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#72547 - alex:patch-1, r=oli-obk
Added a codegen test for a recent optimization for overflow-checks=on Closes rust-lang#58692
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// no-system-llvm | ||
// compile-flags: -O -C overflow-checks=on | ||
|
||
#![crate_type = "lib"] | ||
|
||
|
||
pub struct S1<'a> { | ||
data: &'a [u8], | ||
position: usize, | ||
} | ||
|
||
// CHECK-LABEL: @slice_no_index_order | ||
#[no_mangle] | ||
pub fn slice_no_index_order<'a>(s: &'a mut S1, n: usize) -> &'a [u8] { | ||
// CHECK-NOT: slice_index_order_fail | ||
let d = &s.data[s.position..s.position+n]; | ||
s.position += n; | ||
return d; | ||
} | ||
|
||
// CHECK-LABEL: @test_check | ||
#[no_mangle] | ||
pub fn test_check<'a>(s: &'a mut S1, x: usize, y: usize) -> &'a [u8] { | ||
// CHECK: slice_index_order_fail | ||
&s.data[x..y] | ||
} |