Merge from rustc
This commit is contained in:
commit
debbe6d4a5
@ -130,6 +130,7 @@ pub const MIRI_DEFAULT_ARGS: &[&str] = &[
|
|||||||
"-Zalways-encode-mir",
|
"-Zalways-encode-mir",
|
||||||
"-Zextra-const-ub-checks",
|
"-Zextra-const-ub-checks",
|
||||||
"-Zmir-emit-retag",
|
"-Zmir-emit-retag",
|
||||||
|
"-Zmir-keep-place-mention",
|
||||||
"-Zmir-opt-level=0",
|
"-Zmir-opt-level=0",
|
||||||
"-Zmir-enable-passes=-CheckAlignment",
|
"-Zmir-enable-passes=-CheckAlignment",
|
||||||
];
|
];
|
||||||
|
@ -0,0 +1,13 @@
|
|||||||
|
// Make sure we find these even with many checks disabled.
|
||||||
|
//@compile-flags: -Zmiri-disable-alignment-check -Zmiri-disable-stacked-borrows -Zmiri-disable-validation
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let p = {
|
||||||
|
let b = Box::new(42);
|
||||||
|
&*b as *const i32
|
||||||
|
};
|
||||||
|
unsafe {
|
||||||
|
let _ = *p; //~ ERROR: dereferenced after this allocation got freed
|
||||||
|
}
|
||||||
|
panic!("this should never print");
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
error: Undefined Behavior: pointer to ALLOC was dereferenced after this allocation got freed
|
||||||
|
--> $DIR/dangling_pointer_deref_underscore.rs:LL:CC
|
||||||
|
|
|
||||||
|
LL | let _ = *p;
|
||||||
|
| ^^ pointer to ALLOC was dereferenced after this allocation got freed
|
||||||
|
|
|
||||||
|
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
|
||||||
|
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
|
||||||
|
= note: BACKTRACE:
|
||||||
|
= note: inside `main` at $DIR/dangling_pointer_deref_underscore.rs:LL:CC
|
||||||
|
|
||||||
|
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace
|
||||||
|
|
||||||
|
error: aborting due to previous error
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user