Skip to content

Commit

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

Fixes rust-lang#73773
Cc @rust-lang/miri r? @ghost
  • Loading branch information
bors committed Jun 30, 2020
2 parents 665190b + 2d9ed15 commit e070765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/miri
Submodule miri updated 74 files
+2 −1 ci.sh
+1 −1 rust-version
+31 −0 src/helpers.rs
+1 −1 src/intptrcast.rs
+11 −12 src/lib.rs
+2 −2 src/machine.rs
+10 −33 src/shims/dlsym.rs
+3 −7 src/shims/foreign_items.rs
+27 −10 src/shims/intrinsics.rs
+8 −13 src/shims/mod.rs
+0 −8 src/shims/panic.rs
+39 −0 src/shims/posix/dlsym.rs
+8 −7 src/shims/posix/foreign_items.rs
+2 −2 src/shims/posix/fs.rs
+34 −0 src/shims/posix/linux/dlsym.rs
+6 −2 src/shims/posix/linux/foreign_items.rs
+2 −0 src/shims/posix/linux/mod.rs
+49 −0 src/shims/posix/macos/dlsym.rs
+4 −1 src/shims/posix/macos/foreign_items.rs
+2 −0 src/shims/posix/macos/mod.rs
+11 −0 src/shims/posix/mod.rs
+20 −93 src/shims/posix/sync.rs
+0 −0 src/shims/posix/thread.rs
+2 −5 src/shims/tls.rs
+80 −0 src/shims/windows/dlsym.rs
+5 −4 src/shims/windows/foreign_items.rs
+4 −0 src/shims/windows/mod.rs
+135 −0 src/shims/windows/sync.rs
+105 −60 src/sync.rs
+2 −2 src/thread.rs
+0 −1 tests/compile-fail/abort-terminator.rs
+1 −1 tests/compile-fail/concurrency/libc_pthread_create_main_terminate.rs
+1 −1 tests/compile-fail/concurrency/libc_pthread_join_detached.rs
+1 −1 tests/compile-fail/concurrency/libc_pthread_join_joined.rs
+1 −1 tests/compile-fail/concurrency/libc_pthread_join_main.rs
+1 −1 tests/compile-fail/concurrency/libc_pthread_join_multiple.rs
+1 −1 tests/compile-fail/concurrency/libc_pthread_join_self.rs
+1 −1 tests/compile-fail/concurrency/thread-spawn.rs
+13 −0 tests/compile-fail/dangling_pointers/dangling_pointer_addr_of.rs
+1 −1 tests/compile-fail/environ-gets-deallocated.rs
+1 −1 tests/compile-fail/intrinsics/exact_div2.rs
+1 −1 tests/compile-fail/intrinsics/exact_div3.rs
+0 −1 tests/compile-fail/panic/double_panic.rs
+0 −9 tests/compile-fail/panic/windows1.rs
+0 −9 tests/compile-fail/panic/windows2.rs
+0 −10 tests/compile-fail/panic/windows3.rs
+12 −0 tests/compile-fail/unaligned_pointers/unaligned_ptr_addr_of.rs
+1 −1 tests/run-pass/calloc.rs
+1 −5 tests/run-pass/concurrency/sync_singlethread.rs
+6 −1 tests/run-pass/intrinsics.rs
+22 −0 tests/run-pass/issue-73223.rs
+1 −1 tests/run-pass/malloc.rs
+4 −1 tests/run-pass/packed_struct.rs
+1 −1 tests/run-pass/panic/catch_panic.rs
+0 −1 tests/run-pass/panic/div-by-zero-2.rs
+1 −1 tests/run-pass/panic/div-by-zero-2.stderr
+0 −1 tests/run-pass/panic/overflowing-lsh-neg.rs
+1 −1 tests/run-pass/panic/overflowing-lsh-neg.stderr
+0 −1 tests/run-pass/panic/overflowing-rsh-1.rs
+1 −1 tests/run-pass/panic/overflowing-rsh-1.stderr
+0 −1 tests/run-pass/panic/overflowing-rsh-2.rs
+1 −1 tests/run-pass/panic/overflowing-rsh-2.stderr
+0 −1 tests/run-pass/panic/panic1.rs
+1 −1 tests/run-pass/panic/panic1.stderr
+0 −1 tests/run-pass/panic/panic2.rs
+1 −1 tests/run-pass/panic/panic2.stderr
+0 −1 tests/run-pass/panic/panic3.rs
+1 −1 tests/run-pass/panic/panic3.stderr
+0 −1 tests/run-pass/panic/panic4.rs
+1 −1 tests/run-pass/panic/panic4.stderr
+0 −1 tests/run-pass/panic/std-panic-locations.rs
+1 −1 tests/run-pass/thread-local.rs
+0 −1 tests/run-pass/transmute_fat2.rs
+1 −1 tests/run-pass/transmute_fat2.stderr

0 comments on commit e070765

Please sign in to comment.