| Age | Commit message (Expand) | Author | Lines |
| 2023-06-14 | s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedList | The 8472 | -9/+6 |
| 2023-06-13 | Auto merge of #112017 - Nemo157:unsafe-block-rustfix, r=eholk | bors | -11/+47 |
| 2023-06-13 | Add note about unsafe functions body not being unsafe | Wim Looman | -3/+15 |
| 2023-06-13 | Hide suggestion to wrap function in unsafe block | Wim Looman | -1/+1 |
| 2023-06-13 | Add MVP suggestion for `unsafe_op_in_unsafe_fn` | Léo Lanteri Thauvin | -11/+35 |
| 2023-06-09 | Auto merge of #111626 - pjhades:output, r=b-naber | bors | -4/+11 |
| 2023-06-08 | Auto merge of #108293 - Jarcho:mut_analyses, r=eholk | bors | -32/+47 |
| 2023-06-07 | Remove wrongly emitted `.eh_frame` in `-Cpanic=abort` | Gary Guo | -1/+6 |
| 2023-06-06 | Write to stdout if `-` is given as output file | Jing Peng | -4/+11 |
| 2023-06-05 | cleanup some skip_binder -> subst_identity | Kyle Matsuda | -1/+1 |
| 2023-06-04 | Auto merge of #112240 - cjgillot:recurse-inline, r=scottmcm | bors | -3/+6 |
| 2023-06-03 | Only check inlining counter after recusing. | Camille GILLOT | -3/+6 |
| 2023-06-02 | Rollup merge of #112168 - scottmcm:lower-div-rem-unchecked-to-mir, r=oli-obk | Michael Goulet | -23/+28 |
| 2023-06-02 | Separate AnonConst from ConstBlock in HIR. | Camille GILLOT | -4/+2 |
| 2023-06-02 | Auto merge of #111677 - fee1-dead-contrib:rustc_const_eval-translatable, r=ol... | bors | -7/+26 |
| 2023-06-01 | Auto merge of #112040 - cjgillot:separate-const-switch, r=oli-obk | bors | -17/+30 |
| 2023-06-01 | fix diagnostic message | Deadbeef | -2/+4 |
| 2023-06-01 | improve debug message by eagerly translating | Deadbeef | -2/+2 |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -7/+24 |
| 2023-06-01 | Auto merge of #112002 - saethlin:enable-sroa, r=oli-obk,scottmcm | bors | -5/+45 |
| 2023-06-01 | Lower unchecked_{div, rem} to BinOp::{Div, Rem} | Scott McMurray | -23/+28 |
| 2023-05-31 | Enable ScalarReplacementOfAggregates | Ben Kimock | -5/+45 |
| 2023-05-31 | Document handling of StorageDead. | Camille GILLOT | -0/+15 |
| 2023-05-31 | Auto merge of #111913 - oli-obk:valtrees2, r=lcnr | bors | -2/+2 |
| 2023-05-31 | Only rewrite valtree-constants to patterns and keep other constants opaque | Oli Scherer | -2/+2 |
| 2023-05-31 | Auto merge of #112070 - lcnr:disjoint-closure-capture-ub, r=oli-obk | bors | -3/+0 |
| 2023-05-29 | unique borrows are mutating uses | lcnr | -3/+0 |
| 2023-05-29 | EarlyBinder::new -> EarlyBinder::bind | lcnr | -7/+7 |
| 2023-05-29 | Enable ConstGoto pass by default. | Camille GILLOT | -1/+1 |
| 2023-05-29 | Enable SeparateConstSwitch by default. | Camille GILLOT | -2/+5 |
| 2023-05-29 | Visit bodies in RPO for const-prop. | Camille GILLOT | -7/+8 |
| 2023-05-29 | Stop marking locals as dead in ConstProp. | Camille GILLOT | -7/+1 |
| 2023-05-28 | Auto merge of #111813 - scottmcm:pretty-mir, r=cjgillot | bors | -0/+155 |
| 2023-05-28 | Make EarlyBinder's inner value private; and fix all of the resulting errors | Kyle Matsuda | -2/+5 |
| 2023-05-28 | Replace EarlyBinder(x) with EarlyBinder::new(x) | Kyle Matsuda | -7/+7 |
| 2023-05-28 | Auto merge of #112026 - saethlin:misaligned-addrof, r=pnkfelix | bors | -0/+8 |
| 2023-05-28 | Auto merge of #112001 - saethlin:enable-matchbranchsimplification, r=cjgillot | bors | -2/+7 |
| 2023-05-27 | Exclude Rvalue::AddressOf for raw pointer deref alignment checks | Ben Kimock | -0/+8 |
| 2023-05-27 | Try enabling MatchBranchSimplification | Ben Kimock | -2/+7 |
| 2023-05-27 | Rollup merge of #111952 - cjgillot:drop-replace, r=WaffleLapkin | Guillaume Gomez | -12/+21 |
| 2023-05-26 | Auto merge of #111858 - clubby789:fluent-alphabetical, r=jyn514,compiler-errors | bors | -40/+41 |
| 2023-05-25 | Ensure Fluent messages are in alphabetical order | clubby789 | -40/+41 |
| 2023-05-25 | Remove DesugaringKind::Replace. | Camille GILLOT | -12/+21 |
| 2023-05-25 | Remove ExpnKind::Inlined. | Camille GILLOT | -18/+0 |
| 2023-05-25 | Auto merge of #111925 - Manishearth:rollup-z6z6l2v, r=Manishearth | bors | -2/+2 |
| 2023-05-24 | Rollup merge of #111912 - WaffleLapkin:is_some_and_in_the_compiler, r=petroch... | Manish Goregaokar | -2/+2 |
| 2023-05-24 | Rollup merge of #111121 - Zalathar:ra-false-positive, r=jackh726 | Matthias Krüger | -2/+2 |
| 2023-05-24 | Auto merge of #111673 - cjgillot:dominator-preprocess, r=cjgillot,tmiasko | bors | -30/+15 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -2/+2 |
| 2023-05-23 | Rollup merge of #111501 - WaffleLapkin:drivebycleanupuwu, r=oli-obk | Dylan DPC | -32/+9 |