Skip to content

Commit

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

Fixes #96773
r? `@ghost`
  • Loading branch information
GuillaumeGomez authored May 7, 2022
2 parents e323854 + 59d5c20 commit a69143b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/miri
Submodule miri updated 50 files
+2 −2 .github/workflows/ci.yml
+1 −1 Cargo.toml
+11 −4 README.md
+1 −1 bench-cargo-miri/mse/src/main.rs
+1 −1 rust-version
+2 −2 rustup-toolchain
+2 −1 src/bin/miri.rs
+3 −3 src/data_race.rs
+2 −4 src/diagnostics.rs
+16 −15 src/helpers.rs
+49 −0 src/helpers/convert.rs
+15 −2 src/lib.rs
+2 −2 src/machine.rs
+4 −8 src/range_map.rs
+5 −5 src/shims/backtrace.rs
+9 −9 src/shims/env.rs
+39 −24 src/shims/foreign_items.rs
+43 −43 src/shims/intrinsics.rs
+1 −1 src/shims/mod.rs
+1 −1 src/shims/os_str.rs
+4 −4 src/shims/panic.rs
+60 −60 src/shims/posix/foreign_items.rs
+13 −13 src/shims/posix/fs.rs
+14 −16 src/shims/posix/linux/foreign_items.rs
+1 −1 src/shims/posix/macos/dlsym.rs
+19 −27 src/shims/posix/macos/foreign_items.rs
+1 −1 src/shims/posix/thread.rs
+2 −2 src/shims/tls.rs
+10 −10 src/shims/windows/dlsym.rs
+40 −47 src/shims/windows/foreign_items.rs
+1 −1 src/stacked_borrows.rs
+1 −1 src/sync.rs
+6 −6 src/thread.rs
+1 −1 tests/compile-fail/data_race/dangling_thread_async_race.rs
+1 −1 tests/compile-fail/data_race/dealloc_read_race2.rs
+1 −1 tests/compile-fail/data_race/read_write_race_stack.rs
+2 −2 tests/compile-fail/data_race/write_write_race_stack.rs
+1 −1 tests/compile-fail/erroneous_const.rs
+1 −1 tests/compile-fail/panic/double_panic.rs
+1 −1 tests/compile-fail/rc_as_ptr.rs
+6 −0 tests/compile-fail/type-too-large.rs
+2 −2 tests/run-pass/backtrace-api-v1.rs
+3 −3 tests/run-pass/concurrency/data_race.rs
+15 −15 tests/run-pass/dyn-arbitrary-self.rs
+22 −0 tests/run-pass/intrinsics-x86.rs
+1 −1 tests/run-pass/ptr_offset.rs
+0 −1 tests/run-pass/stacked-borrows/2phase.rs
+1 −1 tests/run-pass/stacked-borrows/stacked-borrows.rs
+1 −1 tests/run-pass/threadleak_ignored.rs
+4 −4 tests/run-pass/vec-matching-fold.rs

0 comments on commit a69143b

Please sign in to comment.