| Age | Commit message (Expand) | Author | Lines |
| 2024-04-26 | add test for concurrent env var access | Ralf Jung | -0/+8 |
| 2024-04-26 | Auto merge of #3516 - RalfJung:pathbuf, r=RalfJung | bors | -37/+60 |
| 2024-04-26 | add smoke tests for basic PathBuf interactions | Ralf Jung | -37/+60 |
| 2024-04-25 | debuginfo: Stabilize `-Z debug-macros`, `-Z collapse-macro-debuginfo` and `#[... | Vadim Petrochenkov | -2/+2 |
| 2024-04-25 | run many-seeds tests at least a few times on all tier 1 targets | Ralf Jung | -4/+17 |
| 2024-04-25 | add a test for the TLS memory leak | Ralf Jung | -0/+13 |
| 2024-04-25 | fmt | The Miri Cronjob Bot | -80/+149 |
| 2024-04-25 | Merge from rustc | The Miri Cronjob Bot | -27/+26 |
| 2024-04-25 | Rollup merge of #124335 - ChrisDenton:stabilize-absolute, r=dtolnay | Matthias Krüger | -1/+0 |
| 2024-04-24 | Stabilize `std::path::absolute` | Chris Denton | -1/+0 |
| 2024-04-24 | Auto merge of #3492 - eduardosm:intrinsics-x86-avx2, r=oli-obk | bors | -0/+1613 |
| 2024-04-24 | Fix miri test | Gary Guo | -1/+1 |
| 2024-04-24 | Error on using `yield` without also using `#[coroutine]` on the closure | Oli Scherer | -25/+25 |
| 2024-04-24 | Auto merge of #3507 - RalfJung:let-underscore, r=RalfJung | bors | -15/+15 |
| 2024-04-24 | avoid 'let _' in tests where we actually want the value to be computed | Ralf Jung | -15/+15 |
| 2024-04-24 | Auto merge of #3502 - RalfJung:GetUserProfileDirectoryW, r=RalfJung | bors | -1/+1 |
| 2024-04-24 | windows: basic support for GetUserProfileDirectoryW | Ralf Jung | -1/+1 |
| 2024-04-24 | Merge from rustc | The Miri Cronjob Bot | -32/+118 |
| 2024-04-23 | Rollup merge of #124003 - WaffleLapkin:dellvmization, r=scottmcm,RalfJung,antoyo | Matthias Krüger | -2/+2 |
| 2024-04-23 | Implement LLVM x86 AVX2 intrinsics | Eduardo Sánchez Muñoz | -0/+1613 |
| 2024-04-23 | chore: fix some typos in comments | forcedebug | -2/+2 |
| 2024-04-23 | Auto merge of #3493 - eduardosm:env-set, r=oli-obk | bors | -0/+7 |
| 2024-04-23 | Merge from rustc | The Miri Cronjob Bot | -3/+242 |
| 2024-04-23 | Rollup merge of #124220 - RalfJung:interpret-wrong-vtable, r=oli-obk | Matthias Krüger | -30/+116 |
| 2024-04-23 | Auto merge of #121801 - zetanumbers:async_drop_glue, r=oli-obk | bors | -0/+235 |
| 2024-04-22 | Add localtime_r shim | tiif | -0/+45 |
| 2024-04-21 | Add `-Zmiri-env-set` to set environment variables without modifying the host ... | Eduardo Sánchez Muñoz | -0/+7 |
| 2024-04-21 | Miri: detect wrong vtables in wide pointers | Ralf Jung | -30/+116 |
| 2024-04-21 | the mir-validation ICE test behaves strangely on Windows hosts | Ralf Jung | -3/+6 |
| 2024-04-20 | ensure the ICE-to-file logic does not affect our test | Ralf Jung | -0/+1 |
| 2024-04-20 | re-bless tests | Ralf Jung | -0/+2 |
| 2024-04-20 | Merge from rustc | The Miri Cronjob Bot | -0/+31 |
| 2024-04-19 | Auto merge of #3475 - RalfJung:reduce-reuse-recycle, r=RalfJung | bors | -4/+144 |
| 2024-04-19 | make test not leak rustc crate hash | Ralf Jung | -1/+2 |
| 2024-04-18 | when reusing an address, most of the time only reuse from the current thread | Ralf Jung | -4/+81 |
| 2024-04-18 | when an address gets reused, establish a happens-before link in the data race... | Ralf Jung | -0/+63 |
| 2024-04-18 | Auto merge of #3484 - RalfJung:realloc, r=RalfJung | bors | -3/+27 |
| 2024-04-18 | make realloc with a size of zero fail | Ralf Jung | -3/+27 |
| 2024-04-18 | when suggesting RUST_BACKTRACE=1, add a special note for Miri's env var isola... | Ralf Jung | -0/+31 |
| 2024-04-18 | add test checking that we do run MIR validation | Ralf Jung | -0/+42 |
| 2024-04-18 | add test for Drop terminator on non-drop type | Ralf Jung | -0/+21 |
| 2024-04-17 | Merge from rustc | Ralf Jung | -1/+1 |
| 2024-04-17 | Rollup merge of #124030 - RalfJung:adjust_alloc_base_pointer, r=oli-obk | Matthias Krüger | -1/+1 |
| 2024-04-17 | Auto merge of #3480 - RalfJung:alloc_error_handler, r=RalfJung | bors | -120/+171 |
| 2024-04-17 | no need to use miri's native stderr here | Ralf Jung | -3/+2 |
| 2024-04-17 | tests/utils: add fmt::Write implementations for miri's native stdout/stderr | Ralf Jung | -59/+64 |
| 2024-04-17 | alloc_error_handler tests: directly call handle_alloc_error; test more codepaths | Ralf Jung | -75/+122 |
| 2024-04-17 | interpret: rename base_pointer -> root_pointer | Ralf Jung | -1/+1 |
| 2024-04-17 | fmt | The Miri Cronjob Bot | -10/+12 |
| 2024-04-17 | Merge from rustc | The Miri Cronjob Bot | -2/+42 |