| Age | Commit message (Expand) | Author | Lines |
| 2024-10-19 | interpret errors: add map_err_kind, rename InterpError -> InterpErrorKind | Ralf Jung | -12/+12 |
| 2024-10-08 | fix/update teach_note from 'escaping mutable ref/ptr' const-check | Ralf Jung | -6/+6 |
| 2024-09-23 | Check vtable projections for validity in miri | Michael Goulet | -12/+6 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -8/+5 |
| 2024-09-21 | Rollup merge of #130665 - veera-sivarajan:fix-118612, r=compiler-errors | Jubilee | -0/+2 |
| 2024-09-21 | Prevent Deduplication of `LongRunningWarn` | Veera | -0/+2 |
| 2024-09-15 | also stabilize const_refs_to_cell | Ralf Jung | -7/+0 |
| 2024-09-15 | stabilize const_mut_refs | Ralf Jung | -24/+0 |
| 2024-09-10 | const-eval interning: accpt interior mutable pointers in final value (but kee... | Ralf Jung | -5/+2 |
| 2024-08-24 | Rollup merge of #129199 - RalfJung:writes_through_immutable_pointer, r=compil... | Matthias Krüger | -7/+0 |
| 2024-08-21 | Use bool in favor of Option<()> for diagnostics | Michael Goulet | -5/+5 |
| 2024-08-17 | make writes_through_immutable_pointer a hard error | Ralf Jung | -7/+0 |
| 2024-08-01 | on a signed deref check, mention the right pointer in the error | Ralf Jung | -13/+18 |
| 2024-07-29 | Rollup merge of #128277 - RalfJung:offset_from_wildcard, r=oli-obk | Matthias Krüger | -14/+28 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -6/+10 |
| 2024-07-27 | improve dangling/oob errors and make them more uniform | Ralf Jung | -14/+28 |
| 2024-06-22 | don't ICE when encountering an extern type field during validation | Ralf Jung | -2/+6 |
| 2024-06-18 | Use a dedicated type instead of a reference for the diagnostic context | Oli Scherer | -2/+2 |
| 2024-06-17 | Remove an unused validation error variant | Oli Scherer | -4/+0 |
| 2024-05-21 | interpret: make overflowing binops just normal binops | Ralf Jung | -0/+16 |
| 2024-04-21 | Miri: detect wrong vtables in wide pointers | Ralf Jung | -0/+17 |
| 2024-04-02 | Forbid implicit nested statics in thread local statics | Oli Scherer | -0/+7 |
| 2024-03-17 | Print a backtrace in const eval if interrupted | Ben Kimock | -0/+1 |
| 2024-03-14 | Rename some things around validation error reporting to signal that it is in ... | Oli Scherer | -3/+3 |
| 2024-03-13 | downgrade mutable-ptr-in-final-value from hard-error to future-incompat lint ... | Felix S. Klock II | -2/+5 |
| 2024-03-11 | Rename `IntoDiagnostic` as `Diagnostic`. | Nicholas Nethercote | -3/+2 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -2/+2 |
| 2024-03-11 | Remove unused impls from some subdiagnostics. | Nicholas Nethercote | -1/+1 |
| 2024-03-05 | Rename `DiagnosticMessage` as `DiagMessage`. | Nicholas Nethercote | -10/+9 |
| 2024-02-29 | Rollup merge of #121782 - RalfJung:mutable-ref-in-static, r=oli-obk | Matthias Krüger | -2/+0 |
| 2024-02-29 | allow statics pointing to mutable statics | Ralf Jung | -2/+0 |
| 2024-02-28 | Auto merge of #121489 - nnethercote:diag-renaming, r=davidtwco | bors | -16/+16 |
| 2024-02-28 | Rename `DiagnosticArg{,Map,Name,Value}` as `DiagArg{,Map,Name,Value}`. | Nicholas Nethercote | -7/+7 |
| 2024-02-28 | Rename `DiagnosticBuilder` as `Diag`. | Nicholas Nethercote | -11/+11 |
| 2024-02-27 | Split rustc_type_ir to avoid rustc_ast from depending on it | Oli Scherer | -2/+1 |
| 2024-02-22 | Overhaul `Diagnostic` args. | Nicholas Nethercote | -2/+2 |
| 2024-02-16 | allow mutable references in const values when they point to no memory | Ralf Jung | -11/+13 |
| 2024-02-12 | Remove `dcx` arg from `ReportErrorExt::add_args`. | Nicholas Nethercote | -74/+60 |
| 2024-02-11 | Rollup merge of #120883 - RalfJung:extern-static-err, r=oli-obk | Matthias Krüger | -2/+2 |
| 2024-02-11 | Rollup merge of #120882 - RalfJung:set-discriminant, r=compiler-errors | Matthias Krüger | -0/+6 |
| 2024-02-10 | detect consts that reference extern statics | Ralf Jung | -0/+2 |
| 2024-02-10 | validation: descend from consts into statics | Ralf Jung | -8/+2 |
| 2024-02-10 | unstably allow constants to refer to statics and read from immutable statics | Ralf Jung | -13/+9 |
| 2024-02-10 | interpret: rename ReadExternStatic → ExternStatic | Ralf Jung | -2/+2 |
| 2024-02-10 | interpret/write_discriminant: when encoding niched variant, ensure the stored... | Ralf Jung | -0/+6 |
| 2024-01-30 | Remove the lifetime from `DiagnosticArgValue`. | Nicholas Nethercote | -1/+1 |
| 2024-01-29 | Stop using `String` for error codes. | Nicholas Nethercote | -26/+26 |
| 2024-01-25 | Auto merge of #119627 - oli-obk:const_prop_lint_n̵o̵n̵sense, r=cjgillot | bors | -6/+1 |
| 2024-01-23 | const prop nonsense eliminated | Oli Scherer | -6/+1 |
| 2024-01-22 | raw pointers are not references | Ralf Jung | -4/+4 |