Skip to content

Commit

Permalink
Auto merge of #95815 - RalfJung:miri, r=RalfJung
Browse files Browse the repository at this point in the history
update Miri

Fixes #95627
r? `@ghost` Cc `@rust-lang/miri`
  • Loading branch information
bors committed Apr 8, 2022
2 parents f4a7ce9 + 083be9c commit 340f649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/miri
Submodule miri updated 45 files
+1 −1 Cargo.toml
+2 −1 README.md
+1 −1 cargo-miri/Cargo.toml
+1 −1 rust-version
+1 −0 src/bin/miri.rs
+12 −14 src/data_race.rs
+2 −2 src/diagnostics.rs
+7 −9 src/eval.rs
+9 −9 src/helpers.rs
+24 −32 src/intptrcast.rs
+2 −2 src/lib.rs
+142 −145 src/machine.rs
+5 −5 src/shims/backtrace.rs
+16 −14 src/shims/env.rs
+18 −20 src/shims/foreign_items.rs
+9 −7 src/shims/intrinsics.rs
+2 −2 src/shims/mod.rs
+2 −4 src/shims/os_str.rs
+3 −3 src/shims/panic.rs
+4 −4 src/shims/posix/foreign_items.rs
+32 −29 src/shims/posix/fs.rs
+7 −14 src/shims/posix/linux/foreign_items.rs
+82 −20 src/shims/posix/linux/sync.rs
+1 −1 src/shims/posix/macos/foreign_items.rs
+27 −13 src/shims/posix/thread.rs
+1 −1 src/shims/tls.rs
+78 −4 src/shims/windows/dlsym.rs
+19 −45 src/shims/windows/foreign_items.rs
+23 −23 src/stacked_borrows.rs
+18 −14 src/sync.rs
+8 −8 src/thread.rs
+1 −1 tests/compile-fail/fs/unix_open_missing_required_mode.rs
+0 −16 tests/compile-fail/fs/unix_open_too_many_args.rs
+27 −0 tests/compile-fail/strict_provenance_transmute.rs
+1 −1 tests/run-pass/btreemap.rs
+88 −2 tests/run-pass/concurrency/linux-futex.rs
+1 −1 tests/run-pass/concurrency/simple.rs
+1 −1 tests/run-pass/concurrency/sync.rs
+1 −1 tests/run-pass/concurrency/thread_locals.rs
+15 −0 tests/run-pass/partially-uninit.rs
+1 −1 tests/run-pass/rc.rs
+1 −1 tests/run-pass/slices.rs
+1 −1 tests/run-pass/strings.rs
+1 −1 tests/run-pass/vec.rs
+2 −2 tests/run-pass/vecdeque.rs

0 comments on commit 340f649

Please sign in to comment.