-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Remove
checked_add
in Layout::repeat
"
This fixes a a segfault in safe code, a stable regression. Reported in \#69225. This reverts commit a983e05. Also adds a test for the expected behaviour.
- Loading branch information
Showing
2 changed files
with
38 additions
and
5 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
31 changes: 31 additions & 0 deletions
31
src/test/ui/issues/issue-69225-layout-repeated-checked-add.rs
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,31 @@ | ||
// Ensure we appropriately error instead of overflowing a calculation when creating a new Alloc | ||
// Layout | ||
|
||
// run-fail | ||
// compile-flags: -C opt-level=3 | ||
// error-pattern: index out of bounds: the len is 0 but the index is 16777216 | ||
// ignore-wasm no panic or subprocess support | ||
// ignore-emscripten no panic or subprocess support | ||
|
||
fn do_test(x: usize) { | ||
let arr = vec![vec![0u8; 3]]; | ||
|
||
let mut z = Vec::new(); | ||
for arr_ref in arr { | ||
for y in 0..x { | ||
for _ in 0..1 { | ||
z.extend(std::iter::repeat(0).take(x)); | ||
let a = y * x; | ||
let b = (y + 1) * x - 1; | ||
let slice = &arr_ref[a..b]; | ||
eprintln!("{} {} {} {}", a, b, arr_ref.len(), slice.len()); | ||
eprintln!("{:?}", slice[1 << 24]); | ||
} | ||
} | ||
} | ||
} | ||
|
||
fn main() { | ||
do_test(1); | ||
do_test(2); | ||
} |