Skip to content

Commit

Permalink
update miri
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Mar 4, 2020
1 parent 0a6f45e commit faf3a5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2156,6 +2156,7 @@ dependencies = [
"rustc-workspace-hack",
"rustc_version",
"serde",
"serde_json",
"shell-escape",
"vergen",
]
Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri
Submodule miri updated 47 files
+1 −0 Cargo.lock
+3 −1 Cargo.toml
+11 −6 README.md
+1 −1 bench-cargo-miri/mse/src/main.rs
+1 −0 benches/helpers/miri_helper.rs
+1 −1 rust-version
+116 −73 src/bin/cargo-miri.rs
+7 −3 src/bin/miri-rustc-tests.rs
+6 −1 src/bin/miri.rs
+14 −11 src/eval.rs
+18 −19 src/helpers.rs
+10 −8 src/intptrcast.rs
+14 −8 src/lib.rs
+94 −64 src/machine.rs
+4 −4 src/mono_hash_map.rs
+3 −3 src/operator.rs
+6 −6 src/shims/env.rs
+1 −1 src/shims/foreign_items.rs
+18 −3 src/shims/foreign_items/posix.rs
+14 −0 src/shims/foreign_items/posix/linux.rs
+14 −0 src/shims/foreign_items/posix/macos.rs
+2 −1 src/shims/foreign_items/windows.rs
+341 −1 src/shims/fs.rs
+4 −2 src/shims/panic.rs
+22 −15 src/stacked_borrows.rs
+1 −1 tests/compile-fail/deallocate-bad-alignment.rs
+1 −1 tests/compile-fail/deallocate-bad-size.rs
+1 −1 tests/compile-fail/deallocate-twice.rs
+2 −2 tests/compile-fail/modifying_constants.rs
+1 −1 tests/compile-fail/reallocate-bad-size.rs
+1 −1 tests/compile-fail/reallocate-change-alloc.rs
+1 −1 tests/compile-fail/reallocate-dangling.rs
+2 −2 tests/compile-fail/reference_to_packed.rs
+2 −2 tests/compile-fail/stack_free.rs
+2 −2 tests/compile-fail/static_memory_modification1.rs
+2 −2 tests/compile-fail/static_memory_modification2.rs
+2 −2 tests/compile-fail/static_memory_modification3.rs
+1 −1 tests/compile-fail/validity/cast_fn_ptr1.rs
+1 −1 tests/compile-fail/validity/cast_fn_ptr2.rs
+1 −1 tests/compile-fail/validity/fn_ptr_offset.rs
+1 −1 tests/compile-fail/validity/invalid_bool.rs
+1 −1 tests/compile-fail/validity/invalid_char.rs
+40 −1 tests/run-pass/fs.rs
+11 −2 tests/run-pass/generator.rs
+7 −7 tests/run-pass/heap_allocator.rs
+2 −2 tests/run-pass/observed_local_mut.rs
+2 −2 tests/run-pass/transmute_fat.rs

0 comments on commit faf3a5e

Please sign in to comment.