| Age | Commit message (Expand) | Author | Lines |
| 2022-07-06 | fix a strange ConstProp ICE | Ralf Jung | -2/+10 |
| 2022-07-06 | interpret: remove LocalValue::Unallocated, add Operand::Uninit | Ralf Jung | -27/+40 |
| 2022-07-06 | Rollup merge of #98884 - davidtwco:translation-on-lints-derive, r=oli-obk | Dylan DPC | -2/+1 |
| 2022-07-06 | Update TypeVisitor paths | Alan Egerton | -4/+5 |
| 2022-07-05 | lint: `LintDiagnosticBuilder` into `rustc_errors` | David Wood | -2/+1 |
| 2022-07-05 | Auto merge of #98872 - JakobDegen:no-invalidate, r=davidtwco | bors | -6/+12 |
| 2022-07-03 | Add method to mutate MIR body without invalidating CFG caches. | Jakob Degen | -6/+12 |
| 2022-07-02 | Fix rust-call ICE in mir-inliner | Michael Goulet | -5/+9 |
| 2022-07-02 | Auto merge of #97235 - nbdd0121:unwind, r=Amanieu | bors | -6/+176 |
| 2022-07-02 | Auto merge of #91743 - cjgillot:enable_mir_inlining_inline_all, r=oli-obk | bors | -33/+69 |
| 2022-07-01 | cleanup mir visitor for `rustc::pass_by_value` | lcnr | -12/+12 |
| 2022-06-30 | Allow inlining `#[inline]` functions. | Camille GILLOT | -3/+3 |
| 2022-06-30 | Test enabling MIR inliner | Wesley Wiser | -10/+23 |
| 2022-06-30 | Do not error on the param_env during inlining. | Camille GILLOT | -8/+0 |
| 2022-06-30 | Skip inlining if there are normalization issues. | Camille GILLOT | -0/+40 |
| 2022-06-30 | Do not ICE when failing to resolve. | Camille GILLOT | -1/+1 |
| 2022-06-30 | Check history earlier. | Camille GILLOT | -14/+5 |
| 2022-06-28 | emit Retag for compound types with reference fields | Ralf Jung | -5/+18 |
| 2022-06-21 | Auto merge of #95576 - DrMeepster:box_erasure, r=oli-obk | bors | -10/+270 |
| 2022-06-20 | Rollup merge of #98267 - compiler-errors:suggest-wildcard-arm, r=oli-obk | Matthias Krüger | -2/+2 |
| 2022-06-20 | Rollup merge of #98235 - liuw:mir-gen-drop-magic-value, r=davidtwco | Matthias Krüger | -2/+6 |
| 2022-06-20 | Drop magic value 3 from code | Wei Liu | -2/+6 |
| 2022-06-19 | Use `Span::eq_ctxt` method instead of `.ctxt() == .ctxt()` | Michael Goulet | -2/+2 |
| 2022-06-19 | Rollup merge of #98165 - WaffleLapkin:once_things_renamings, r=m-ou-se | Matthias Krüger | -2/+2 |
| 2022-06-17 | Auto merge of #97863 - JakobDegen:bitset-choice, r=nnethercote | bors | -1/+2 |
| 2022-06-16 | Move/rename `lazy::Sync{OnceCell,Lazy}` to `sync::{Once,Lazy}Lock` | Maybe Waffle | -2/+2 |
| 2022-06-15 | fix box derefs in var debug info | DrMeepster | -0/+31 |
| 2022-06-15 | condense duplicate code into seperate functions | DrMeepster | -22/+45 |
| 2022-06-15 | fix typos & docs | DrMeepster | -6/+7 |
| 2022-06-15 | remove box derefs from codgen | DrMeepster | -10/+215 |
| 2022-06-14 | `BitSet` perf improvements | Jakob Degen | -1/+2 |
| 2022-06-14 | implement valtrees as the type-system representation for constant values | b-naber | -23/+20 |
| 2022-06-14 | Rename the `ConstS::val` field as `kind`. | Nicholas Nethercote | -5/+5 |
| 2022-06-12 | Auto merge of #98018 - scottmcm:miri-yeet, r=RalfJung | bors | -0/+1 |
| 2022-06-11 | Try out `yeet` in the MIR interpreter | Scott McMurray | -0/+1 |
| 2022-06-12 | Remove duplicated implementations of borrowed locals analysis | Tomasz Miąsko | -133/+8 |
| 2022-06-09 | Add a explanation about required panic strategy computation | Gary Guo | -0/+21 |
| 2022-06-09 | Auto merge of #97740 - RalfJung:ctfe-cycle-spans, r=lcnr | bors | -10/+19 |
| 2022-06-08 | Rename `panic_strategy` query to `required_panic_strategy` | Gary Guo | -2/+4 |
| 2022-06-08 | Use is_fn_like instead of matching on DefKind | Gary Guo | -12/+2 |
| 2022-06-08 | Handle panic runtime specially | Gary Guo | -1/+5 |
| 2022-06-08 | Fix FFI-unwind unsoundness with mixed panic mode | Gary Guo | -0/+153 |
| 2022-06-08 | Rollup merge of #97597 - tmiasko:simplify-locals-side-effects, r=RalfJung,Jak... | Dylan DPC | -3/+7 |
| 2022-06-07 | Preserve unused pointer to address casts | Tomasz Miąsko | -3/+7 |
| 2022-06-07 | Remove `AlwaysLiveLocals` wrapper struct | Tomasz Miąsko | -5/+5 |
| 2022-06-05 | Auto merge of #97697 - WaffleLapkin:no_ref_vec, r=WaffleLapkin | bors | -19/+17 |
| 2022-06-04 | const_prop_lint: ensure we have up-to-date cur_span() | Ralf Jung | -10/+19 |
| 2022-06-04 | Rollup merge of #97696 - cjgillot:normalize-inline, r=compiler-errors | Matthias Krüger | -10/+15 |
| 2022-06-03 | Do not ICE when failing to normalize during inlining. | Camille GILLOT | -10/+15 |
| 2022-06-03 | Replace `&Vec<_>`s with `&[_]`s | Maybe Waffle | -19/+17 |