| Age | Commit message (Expand) | Author | Lines |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -8/+8 |
| 2023-02-16 | Auto merge of #108127 - matthiaskrgr:rollup-kpzfc6j, r=matthiaskrgr | bors | -5/+3 |
| 2023-02-16 | Auto merge of #108020 - nnethercote:opt-mk_region, r=compiler-errors | bors | -5/+2 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -5/+3 |
| 2023-02-16 | Auto merge of #107449 - saethlin:enable-copyprop, r=oli-obk | bors | -6/+41 |
| 2023-02-15 | Auto merge of #108012 - compiler-errors:issue-107999, r=oli-obk | bors | -20/+24 |
| 2023-02-15 | Rollup merge of #107411 - cjgillot:dataflow-discriminant, r=oli-obk | Dylan DPC | -40/+105 |
| 2023-02-14 | Make permit_uninit/zero_init fallible | Michael Goulet | -20/+24 |
| 2023-02-15 | Replace an unnecessary `mk_ty` call with `mk_array`. | Nicholas Nethercote | -5/+2 |
| 2023-02-14 | s/eval_usize/eval_target_usize/ for clarity | Oli Scherer | -2/+2 |
| 2023-02-13 | Typo. | Camille GILLOT | -3/+3 |
| 2023-02-12 | Enable CopyProp by default, tune the impl a bit | Ben Kimock | -6/+41 |
| 2023-02-11 | Auto merge of #107851 - cjgillot:sroa-const, r=oli-obk | bors | -0/+2 |
| 2023-02-10 | Auto merge of #85158 - JulianKnodt:array_const_val, r=cjgillot | bors | -0/+301 |
| 2023-02-09 | Put deaggregated statements after original constant. | Camille GILLOT | -0/+2 |
| 2023-02-08 | Rollup merge of #107271 - Zeegomo:drop-rmw, r=oli-obk | Matthias Krüger | -0/+29 |
| 2023-02-08 | Add de-init to destination place | kadmin | -8/+11 |
| 2023-02-07 | Rollup merge of #107662 - cjgillot:copy-projection, r=oli-obk | Matthias Krüger | -2/+3 |
| 2023-02-07 | Leave FIXME for wasm layout difference. | kadmin | -16/+28 |
| 2023-02-07 | Rm allocation in candidate | kadmin | -1/+285 |
| 2023-02-07 | Clean up MIR transform | kadmin | -0/+2 |
| 2023-02-06 | Rename assign_idx methods. | Camille GILLOT | -8/+7 |
| 2023-02-06 | Limit creation of tracked place directly. | Camille GILLOT | -7/+4 |
| 2023-02-06 | Handle discriminants in dataflow-const-prop. | Camille GILLOT | -18/+85 |
| 2023-02-06 | Only exclude locals if the place is not indirect. | Camille GILLOT | -8/+10 |
| 2023-02-06 | Comment move->copy transform. | Camille Gillot | -0/+1 |
| 2023-02-05 | Simplify ReplacementMap. | Camille GILLOT | -84/+109 |
| 2023-02-05 | Run SROA to fixpoint. | Camille GILLOT | -41/+33 |
| 2023-02-05 | Simplify construction of replacement map. | Camille GILLOT | -89/+69 |
| 2023-02-05 | Introduce helper. | Camille GILLOT | -24/+23 |
| 2023-02-05 | Make SROA expand assignments. | Camille GILLOT | -23/+65 |
| 2023-02-05 | Fix SROA without deaggregation. | Camille GILLOT | -45/+82 |
| 2023-02-04 | Turn projections into copies in CopyProp. | Camille GILLOT | -2/+2 |
| 2023-02-02 | Stop deaggegating MIR. | Camille GILLOT | -53/+0 |
| 2023-02-02 | Stop deaggregating enums in MIR. | Camille GILLOT | -39/+40 |
| 2023-02-02 | Handle aggregates in DataflowConstProp. | Camille GILLOT | -0/+25 |
| 2023-02-02 | Put a DefId in AggregateKind. | Camille GILLOT | -0/+1 |
| 2023-02-02 | Rollup merge of #107524 - cjgillot:both-storage, r=RalfJung | Matthias Krüger | -11/+14 |
| 2023-02-01 | Auto merge of #107536 - GuillaumeGomez:rollup-xv7dx2h, r=GuillaumeGomez | bors | -6/+8 |
| 2023-01-31 | Rollup merge of #107467 - WaffleLapkin:uneq, r=oli-obk | Guillaume Gomez | -6/+8 |
| 2023-01-31 | make unaligned_reference a hard error | Ralf Jung | -26/+17 |
| 2023-01-31 | Remove both StorageLive and StorageDead in CopyProp. | Camille GILLOT | -11/+14 |
| 2023-01-31 | Auto merge of #107443 - cjgillot:generator-less-query, r=compiler-errors | bors | -1/+4 |
| 2023-01-30 | Rollup merge of #107172 - cjgillot:no-nal, r=nagisa | Matthias Krüger | -254/+70 |
| 2023-01-30 | Replace some `_ == _ || _ == _`s with `matches!(_, _ | _)`s | Maybe Waffle | -2/+2 |
| 2023-01-30 | Use `Mutability::{is_mut, is_not}` | Maybe Waffle | -3/+2 |
| 2023-01-30 | Replace enum `==`s with `match`es where it makes sense | Maybe Waffle | -1/+4 |
| 2023-01-30 | Allow more deriving on packed structs. | Nicholas Nethercote | -40/+6 |
| 2023-01-30 | Treat Drop as a rmw operation | Giacomo Pasini | -0/+29 |
| 2023-01-29 | Remove obsolete comment. | Camille GILLOT | -1/+0 |