summaryrefslogtreecommitdiffstats
path: root/tests/ui/issue-76387-llvm-miscompile.rs
blob: a9b4686c97021132c920a11e7b6fa57584cf4bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}