| Age | Commit message (Expand) | Author | Lines |
| 2023-03-12 | Auto merge of #108820 - cjgillot:ensure-on-disk, r=oli-obk | bors | -6/+6 |
| 2023-03-12 | Remove uses of `box_syntax` in rustc and tools | clubby789 | -21/+25 |
| 2023-03-12 | Auto merge of #108794 - nnethercote:avoid-unnecessary-hashing, r=cjgillot | bors | -1/+1 |
| 2023-03-11 | `MaybeUninit::assume_init_read` should have `noundef` load metadata | Scott McMurray | -0/+24 |
| 2023-03-11 | Use ensure_with_value in a few more places. | Camille GILLOT | -1/+1 |
| 2023-03-11 | Make the check for cache opt-in. | Camille GILLOT | -5/+5 |
| 2023-03-10 | Rollup merge of #108902 - lcnr:do-while-sus, r=davidtwco,Nilstrieb | Matthias Krüger | -20/+20 |
| 2023-03-09 | Bug on PlaceMention in dest-prop. | Camille GILLOT | -2/+3 |
| 2023-03-09 | Pacify tidy. | Camille GILLOT | -2/+2 |
| 2023-03-09 | Ignore AscribeUserType in unsafeck to avoid duplicate diagnostics. | Camille GILLOT | -1/+3 |
| 2023-03-09 | Introduce a no-op PlaceMention statement for `let _ =`. | Camille GILLOT | -1/+12 |
| 2023-03-09 | no more do while | lcnr | -20/+20 |
| 2023-03-09 | Auto merge of #108920 - matthiaskrgr:rollup-qrr9a0u, r=matthiaskrgr | bors | -159/+16 |
| 2023-03-09 | Auto merge of #108178 - cjgillot:ssa-deref, r=oli-obk | bors | -16/+40 |
| 2023-03-08 | Rollup merge of #108856 - Zeegomo:remove-drop-and-rep, r=tmiasko | Matthias Krüger | -159/+16 |
| 2023-03-08 | Remove useless parameter to operand_from_scalar. | Camille GILLOT | -14/+5 |
| 2023-03-08 | Make comment more explicit. | Camille GILLOT | -2/+4 |
| 2023-03-08 | Separate checking rvalue from evaluation. | Camille GILLOT | -113/+104 |
| 2023-03-08 | Recurse into statement before applying its effect. | Camille GILLOT | -4/+8 |
| 2023-03-08 | Refactor tracking of writes. | Camille GILLOT | -72/+58 |
| 2023-03-08 | Remove OnlyPropagateInto. | Camille GILLOT | -31/+8 |
| 2023-03-08 | Only assign value in remove_const. | Camille GILLOT | -15/+7 |
| 2023-03-08 | Do not track span in ConstProp. | Camille GILLOT | -30/+9 |
| 2023-03-08 | Simplify visit_statement. | Camille GILLOT | -65/+61 |
| 2023-03-08 | Create visit_block_data for const-prop-lint. | Camille GILLOT | -5/+5 |
| 2023-03-08 | Auto merge of #108312 - michaelwoerister:hash-set-not-hash-stable, r=eholk | bors | -12/+10 |
| 2023-03-08 | Only compute the crate hash when necessary. | Nicholas Nethercote | -1/+1 |
| 2023-03-07 | Remove DropAndReplace terminator | Giacomo Pasini | -159/+16 |
| 2023-03-06 | Rollup merge of #108786 - saethlin:free-regions-check, r=oli-obk | Matthias Krüger | -6/+0 |
| 2023-03-06 | Auto merge of #108787 - cjgillot:sroa-lifetime, r=compiler-errors | bors | -3/+5 |
| 2023-03-05 | Rollup merge of #108764 - cjgillot:dpm-adapt, r=compiler-errors | Matthias Krüger | -6/+8 |
| 2023-03-05 | Check for free regions in MIR validation | Ben Kimock | -6/+0 |
| 2023-03-05 | Erase lifetimes in SROA. | Camille GILLOT | -3/+5 |
| 2023-03-05 | drop_tracking_mir: avoid good path bug. | Camille GILLOT | -6/+8 |
| 2023-03-05 | Auto merge of #107844 - Zeegomo:no-drop-and-rep, r=cjgillot | bors | -5/+14 |
| 2023-03-03 | Desugars drop and replace at MIR build | Giacomo Pasini | -5/+14 |
| 2023-03-03 | Match unmatched backticks in comments in compiler/ | est31 | -4/+7 |
| 2023-03-03 | Match unmatched backticks in compiler/ that are part of rustdoc | est31 | -1/+1 |
| 2023-03-01 | Remove last instances of HashSet in query result types. | Michael Woerister | -12/+10 |
| 2023-02-27 | Do not grow `assignment_order` needlessly. | Camille GILLOT | -2/+5 |
| 2023-02-27 | Special case deref projections in SsaVisitor. | Camille GILLOT | -14/+35 |
| 2023-02-27 | Unify all validity check intrinsics | Nilstrieb | -12/+4 |
| 2023-02-27 | Rollup merge of #108364 - Nilstrieb:validity-checks-refactor, r=compiler-errors | Matthias Krüger | -35/+22 |
| 2023-02-25 | Auto merge of #108250 - nnethercote:rename-interner-funcs, r=compiler-errors | bors | -25/+23 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -25/+23 |
| 2023-02-23 | Unify validity checks into a single query | Nilstrieb | -35/+22 |
| 2023-02-23 | Remove dead unwinds before drop elaboration | Tomasz Miąsko | -18/+39 |
| 2023-02-23 | Rollup merge of #108208 - cjgillot:flood-enum, r=oli-obk | Matthias Krüger | -7/+18 |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -4/+6 |
| 2023-02-22 | Rollup merge of #108246 - saethlin:instcombine-redundant-casts, r=compiler-er... | Guillaume Gomez | -0/+9 |