-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #76387 Pulls in rust-lang/llvm-project#82
- Loading branch information
Showing
3 changed files
with
52 additions
and
1 deletion.
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,29 @@ | ||
// compile-flags: -C opt-level=3 | ||
|
||
pub struct FatPtr { | ||
ptr: *mut u8, | ||
len: usize, | ||
} | ||
|
||
impl FatPtr { | ||
pub fn new(len: usize) -> FatPtr { | ||
let ptr = Box::into_raw(vec![42u8; len].into_boxed_slice()) as *mut u8; | ||
|
||
FatPtr { ptr, len } | ||
} | ||
} | ||
|
||
impl std::ops::Deref for FatPtr { | ||
type Target = [u8]; | ||
|
||
#[inline] | ||
fn deref(&self) -> &[u8] { | ||
unsafe { std::slice::from_raw_parts(self.ptr, self.len) } | ||
} | ||
} | ||
|
||
impl std::ops::Drop for FatPtr { | ||
fn drop(&mut self) { | ||
println!("Drop"); | ||
} | ||
} |
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,22 @@ | ||
// no-system-llvm | ||
// compile-flags: -C opt-level=3 | ||
// aux-build: issue-76387.rs | ||
// run-pass | ||
|
||
// Regression test for issue #76387 | ||
// Tests that LLVM doesn't miscompile this | ||
|
||
extern crate issue_76387; | ||
|
||
use issue_76387::FatPtr; | ||
|
||
fn print(data: &[u8]) { | ||
println!("{:#?}", data); | ||
} | ||
|
||
fn main() { | ||
let ptr = FatPtr::new(20); | ||
let data = unsafe { std::slice::from_raw_parts(ptr.as_ptr(), ptr.len()) }; | ||
|
||
print(data); | ||
} |