| Age | Commit message (Expand) | Author | Lines |
| 2023-03-18 | Rollup merge of #109287 - scottmcm:hash-slice-size-of-val, r=oli-obk | Matthias Krüger | -1/+1 |
| 2023-03-18 | Rollup merge of #109238 - spastorino:new-rpitit-12, r=compiler-errors | Matthias Krüger | -0/+11 |
| 2023-03-18 | Rollup merge of #109234 - tmiasko:overflow-checks, r=cjgillot | Matthias Krüger | -40/+18 |
| 2023-03-18 | Rollup merge of #108772 - jyn514:faster-tidy, r=the8472 | Matthias Krüger | -24/+46 |
| 2023-03-18 | Rollup merge of #107416 - czzrr:issue-80618, r=GuillaumeGomez | Matthias Krüger | -1/+66 |
| 2023-03-18 | Auto merge of #108815 - the8472:process-obligations-fast-skip, r=nnethercote | bors | -4/+77 |
| 2023-03-18 | address review comments | Joshua Nelson | -24/+46 |
| 2023-03-17 | Use `size_of_val` instead of manual calculation | Scott McMurray | -1/+1 |
| 2023-03-18 | Rollup merge of #109257 - petrochenkov:bindebug, r=WaffleLapkin | Matthias Krüger | -4/+12 |
| 2023-03-18 | Rollup merge of #109251 - MU001999:master, r=Nilstrieb | Matthias Krüger | -6/+18 |
| 2023-03-18 | Rollup merge of #109248 - compiler-errors:get_fn_decl-aaa, r=WaffleLapkin | Matthias Krüger | -36/+53 |
| 2023-03-18 | Rollup merge of #109222 - chenyukang:yukang/fix-109143, r=petrochenkov | Matthias Krüger | -2/+3 |
| 2023-03-18 | Rollup merge of #109211 - mili-l:mili_l/update_e0206_description, r=WaffleLapkin | Matthias Krüger | -4/+4 |
| 2023-03-18 | Rollup merge of #109200 - compiler-errors:issue-109191, r=WaffleLapkin | Matthias Krüger | -3/+6 |
| 2023-03-18 | Rollup merge of #109102 - compiler-errors:ambig-assoc-in-non-lt-binder, r=jac... | Matthias Krüger | -3/+14 |
| 2023-03-17 | Auto merge of #108862 - Mark-Simulacrum:bootstrap-bump, r=pietroalbini | bors | -4/+4 |
| 2023-03-17 | Fast path that skips over unchanged obligations in process_obligations | The 8472 | -4/+77 |
| 2023-03-17 | Fix generics mismatch errors for RPITITs on -Zlower-impl-trait-in-trait-to-as... | Santiago Pastorino | -0/+11 |
| 2023-03-17 | Pass the right HIR back from get_fn_decl | Michael Goulet | -36/+53 |
| 2023-03-17 | Erase escaping late-bound regions when probing for ambiguous associated types | Michael Goulet | -3/+14 |
| 2023-03-17 | Auto merge of #109253 - matthiaskrgr:rollup-2xmv5zk, r=matthiaskrgr | bors | -132/+175 |
| 2023-03-17 | Update compiler/rustc_error_codes/src/error_codes/E0206.md | Jamilya Shurukhova | -1/+1 |
| 2023-03-17 | E0206 - code review changes | Jamilya Shurukhova | -3/+4 |
| 2023-03-17 | resolve: Improve debug impls for `NameBinding` | Vadim Petrochenkov | -4/+12 |
| 2023-03-17 | Auto merge of #109085 - tmiasko:index-based, r=WaffleLapkin | bors | -101/+32 |
| 2023-03-17 | Rollup merge of #109215 - est31:sort_by_key, r=Nilstrieb | Matthias Krüger | -2/+2 |
| 2023-03-17 | Rollup merge of #109198 - compiler-errors:new-rpitit-default-body, r=spastorino | Matthias Krüger | -82/+164 |
| 2023-03-17 | Rollup merge of #109156 - taiki-e:linker-detection, r=petrochenkov | Matthias Krüger | -1/+3 |
| 2023-03-17 | Rollup merge of #109155 - taiki-e:riscv64-fuchsia-fix-llvm-target, r=tmandry | Matthias Krüger | -1/+1 |
| 2023-03-17 | Rollup merge of #108958 - clubby789:unbox-the-hir, r=compiler-errors | Matthias Krüger | -46/+5 |
| 2023-03-17 | Suggest surrounding the macro with `{}` to interpret as a statement | Mu42 | -6/+18 |
| 2023-03-17 | Do not ICE for unexpected lifetime with ConstGeneric rib | yukang | -2/+3 |
| 2023-03-16 | Tweak implementation of overflow checking assertions | Tomasz Miąsko | -40/+18 |
| 2023-03-16 | Auto merge of #108944 - cjgillot:clear-local-info, r=oli-obk | bors | -202/+180 |
| 2023-03-16 | Auto merge of #107270 - cjgillot:remove-zst, r=oli-obk | bors | -29/+107 |
| 2023-03-16 | Auto merge of #106824 - m-ou-se:format-args-flatten, r=oli-obk | bors | -24/+232 |
| 2023-03-16 | Use sort_by_key instead of sort_by | est31 | -2/+2 |
| 2023-03-16 | Gate fmt args flattening behind -Zflatten-format-args. | Mara Bos | -2/+9 |
| 2023-03-16 | Don't allow new const panic through format flattening. | Mara Bos | -1/+18 |
| 2023-03-16 | Also inline integer literals into format_args!(). | Mara Bos | -5/+18 |
| 2023-03-16 | Check all arg indexes before removing inlined format args. | Mara Bos | -13/+15 |
| 2023-03-16 | Remove unreachable branch in format_args ast lowering. | Mara Bos | -19/+8 |
| 2023-03-16 | Fix argument index remapping in format_args flattening. | Mara Bos | -28/+36 |
| 2023-03-16 | Only inline `{}` string literals in format_args. | Mara Bos | -0/+1 |
| 2023-03-16 | Support flattening/inlining format_args through & and (). | Mara Bos | -6/+21 |
| 2023-03-16 | Inline string literals into format_args!(). | Mara Bos | -3/+61 |
| 2023-03-16 | Coalesce adjacent literal pieces in expand_format_args. | Mara Bos | -16/+16 |
| 2023-03-16 | Flatten nested format_args!() into one. | Mara Bos | -4/+102 |
| 2023-03-16 | E0206 - removed space | Jamilya Shurukhova | -2/+1 |
| 2023-03-16 | E0206 - added `union` to description | Jamilya Shurukhova | -2/+2 |