| Age | Commit message (Expand) | Author | Lines |
| 2024-11-20 | Rollup merge of #133241 - RalfJung:typing-env, r=lcnr | Matthias Krüger | -9/+8 |
| 2024-11-20 | Rollup merge of #133239 - kleisauke:fix-llvm-triple-x86_64-win7-windows-msvc,... | Matthias Krüger | -1/+1 |
| 2024-11-20 | Account for `wasm32v1-none` when exporting TLS symbols | daxpedda | -2/+2 |
| 2024-11-20 | reduce false positives of tail-expr-drop-order from consumed values | Ding Xiang Fei | -422/+1361 |
| 2024-11-20 | interpret: make typing_env field private | Ralf Jung | -9/+8 |
| 2024-11-20 | Fix LLVM target triple for `x86_64-win7-windows-msvc` | Kleis Auke Wolthuizen | -1/+1 |
| 2024-11-20 | Auto merge of #133234 - jhpratt:rollup-42dmg4p, r=jhpratt | bors | -51/+186 |
| 2024-11-20 | don't require const stability for const impls | Deadbeef | -10/+1 |
| 2024-11-20 | Rollup merge of #133216 - compiler-errors:const-fn, r=lcnr | Jacob Pratt | -19/+135 |
| 2024-11-20 | Rollup merge of #133196 - omnivagant:correct-less-r-flag, r=tgross35 | Jacob Pratt | -1/+1 |
| 2024-11-20 | Rollup merge of #133108 - RalfJung:future-compat-needs-to-run, r=lcnr | Jacob Pratt | -16/+27 |
| 2024-11-20 | Rollup merge of #132732 - gavincrawford:as_ptr_attribute, r=Urgau | Jacob Pratt | -15/+23 |
| 2024-11-20 | Auto merge of #133212 - lcnr:questionable-uwu, r=compiler-errors | bors | -466/+398 |
| 2024-11-20 | Auto merge of #133194 - khuey:master, r=jieyouxu | bors | -34/+55 |
| 2024-11-19 | Auto merge of #133219 - matthiaskrgr:rollup-hnuq0zf, r=matthiaskrgr | bors | -76/+82 |
| 2024-11-19 | Add external macro specific diagnostic to check-cfg | Urgau | -12/+93 |
| 2024-11-19 | Disable most Cargo check-cfg help in external macros | Urgau | -3/+10 |
| 2024-11-19 | Rollup merge of #133207 - jieyouxu:macos-objcopy, r=Kobzol,bjorn3 | Matthias Krüger | -0/+5 |
| 2024-11-19 | Rollup merge of #133201 - nnethercote:rm-TokenKind-InvalidPrefix, r=compiler-... | Matthias Krüger | -60/+51 |
| 2024-11-19 | Rollup merge of #133188 - maxcabrajac:walk_no_visit, r=petrochenkov | Matthias Krüger | -16/+26 |
| 2024-11-19 | Implement ~const Fn trait goals in the new solver | Michael Goulet | -19/+135 |
| 2024-11-19 | lints_that_dont_need_to_run: never skip future-compat-reported lints | Ralf Jung | -16/+27 |
| 2024-11-19 | additional `TypingEnv` cleanups | lcnr | -29/+20 |
| 2024-11-19 | resolve_instance: stop relying on `Reveal` | lcnr | -17/+17 |
| 2024-11-19 | `InterpCx` store `TypingEnv` instead of a `ParamEnv` | lcnr | -179/+154 |
| 2024-11-19 | Implement ~const opaques | Michael Goulet | -6/+52 |
| 2024-11-19 | Rename implied_const_bounds to explicit_implied_const_bounds | Michael Goulet | -20/+17 |
| 2024-11-19 | Auto merge of #132761 - nnethercote:resolve-tweaks, r=petrochenkov | bors | -93/+53 |
| 2024-11-19 | `TypingMode::from_param_env` begone | lcnr | -20/+0 |
| 2024-11-19 | rustdoc: yeet `TypingEnv::from_param_env` | lcnr | -9/+4 |
| 2024-11-19 | generic_const_exprs: yeet `TypingEnv::from_param_env` | lcnr | -6/+11 |
| 2024-11-19 | impl trait overcaptures, yeet ` TypingMode::from_param_env` | lcnr | -3/+3 |
| 2024-11-19 | pattern lowering, yeet `TypingEnv::from_param_env` | lcnr | -63/+38 |
| 2024-11-19 | liveness checking, yeet `TypingEnv::from_param_env` | lcnr | -4/+5 |
| 2024-11-19 | unconditional recursion, yeet `TypingEnv::from_param_env` | lcnr | -10/+5 |
| 2024-11-19 | move `fn is_item_raw` to `TypingEnv` | lcnr | -140/+155 |
| 2024-11-19 | Correct comments concerning updated dangling pointer lint | gavincrawford | -9/+6 |
| 2024-11-19 | Auto merge of #133205 - matthiaskrgr:rollup-xhhhp5u, r=matthiaskrgr | bors | -347/+299 |
| 2024-11-19 | Auto merge of #133164 - RalfJung:promoted-oom, r=jieyouxu | bors | -3/+24 |
| 2024-11-19 | When the required discriminator value exceeds LLVM's limits, drop the debug i... | Kyle Huey | -31/+53 |
| 2024-11-19 | Honor collapse_debuginfo when dealing with MIR-inlined functions inside macros. | Kyle Huey | -3/+2 |
| 2024-11-19 | Explicitly disable llvm tools for cranelift | Jieyou Xu | -0/+5 |
| 2024-11-19 | Auto merge of #132623 - nnethercote:rustc_borrowck-cleanups-2, r=Nadrieril | bors | -226/+171 |
| 2024-11-19 | Rollup merge of #133023 - samestep:hir-stats-total-count, r=nnethercote | Matthias Krüger | -158/+17 |
| 2024-11-19 | Rollup merge of #132577 - Urgau:check-cfg-report-extern-macro, r=petrochenkov | Matthias Krüger | -0/+1 |
| 2024-11-19 | Rollup merge of #131081 - camelid:const-path-it-all, r=BoxyUwU | Matthias Krüger | -189/+281 |
| 2024-11-19 | Remove `TokenKind::InvalidPrefix`. | Nicholas Nethercote | -16/+10 |
| 2024-11-19 | Improve `TokenKind` comments. | Nicholas Nethercote | -41/+39 |
| 2024-11-19 | Improve `fake_ident_or_unknown_prefix`. | Nicholas Nethercote | -6/+5 |
| 2024-11-19 | Fix broken intra-doc link | Boxy | -1/+1 |