-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #62594 - JohnTitor:update-miri, r=RalfJung
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule miri
updated
30 files
+0 −2 | Cargo.toml | |
+3 −0 | README.md | |
+1 −1 | rust-version | |
+10 −11 | src/eval.rs | |
+69 −14 | src/helpers.rs | |
+8 −3 | src/intptrcast.rs | |
+4 −3 | src/lib.rs | |
+91 −48 | src/machine.rs | |
+38 −22 | src/operator.rs | |
+2 −5 | src/range_map.rs | |
+55 −0 | src/shims/dlsym.rs | |
+129 −177 | src/shims/foreign_items.rs | |
+14 −40 | src/shims/intrinsics.rs | |
+49 −0 | src/shims/mod.rs | |
+22 −13 | src/shims/tls.rs | |
+7 −2 | src/stacked_borrows.rs | |
+11 −47 | test-cargo-miri/Cargo.lock | |
+1 −1 | tests/compile-fail/ptr_offset_int_plus_int.rs | |
+7 −0 | tests/compile-fail/thread-spawn.rs | |
+7 −4 | tests/compiletest.rs | |
+0 −0 | tests/run-pass-noseed/hashmap.rs | |
+3 −3 | tests/run-pass-noseed/heap_allocator.rs | |
+26 −0 | tests/run-pass-noseed/intptrcast.rs | |
+9 −0 | tests/run-pass-noseed/malloc.rs | |
+0 −14 | tests/run-pass/intptrcast.rs | |
+0 −6 | tests/run-pass/intptrcast_format.rs | |
+0 −2 | tests/run-pass/intptrcast_format.stdout | |
+2 −0 | tests/run-pass/move-undef-primval.rs | |
+5 −0 | tests/run-pass/mpsc.rs | |
+3 −0 | tests/run-pass/transmute_fat.rs |