diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-22 21:59:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-22 21:59:24 +0100 |
| commit | 6ade237b6c624b5b19214b321395ca43e60a18ad (patch) | |
| tree | 36e26188c457c6cca58b262f6955b5ced5615065 /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | |
| parent | bd160f11f00823c5a3a9ee615907e238e44f2e81 (diff) | |
| parent | 2305012e6a819805fdcf9207d865fa4dbda58f81 (diff) | |
| download | rust-6ade237b6c624b5b19214b321395ca43e60a18ad.tar.gz rust-6ade237b6c624b5b19214b321395ca43e60a18ad.zip | |
Rollup merge of #134583 - Enselic:maybe-uninit-transmute, r=workingjubilee
docs: `transmute<&mut T, &mut MaybeUninit<T>>` is unsound when exposed to safe code Closes #66699 On my system (Edit: And also in the [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=90529e2a9900599cb759e4bfaa5b5efe)) the example program terminates with an unpredictable exit code: ```console $ cargo +nightly build && target/debug/bin ; echo $? 255 $ cargo +nightly build && target/debug/bin ; echo $? 253 ``` And miri considers the code to have undefined behavior: ```console $ cargo +nightly miri run error: Undefined Behavior: using uninitialized data, but this operation requires initialized memory --> src/main.rs:12:24 | 12 | std::process::exit(*code); // UB! Accessing uninitialized memory | ^^^^^ using uninitialized data, but this operation requires initialized memory | error: aborting due to 1 previous error ```
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
0 files changed, 0 insertions, 0 deletions
