| Age | Commit message (Expand) | Author | Lines |
| 2024-11-20 | Auto merge of #131326 - dingxiangfei2009:issue-130836-attempt-2, r=nikomatsakis | bors | -0/+4 |
| 2024-11-20 | reduce false positives of tail-expr-drop-order from consumed values | Ding Xiang Fei | -0/+4 |
| 2024-11-20 | interpret: make typing_env field private | Ralf Jung | -7/+6 |
| 2024-11-19 | `InterpCx` store `TypingEnv` instead of a `ParamEnv` | lcnr | -127/+115 |
| 2024-11-19 | move `fn is_item_raw` to `TypingEnv` | lcnr | -11/+10 |
| 2024-11-19 | Auto merge of #133164 - RalfJung:promoted-oom, r=jieyouxu | bors | -1/+11 |
| 2024-11-18 | Auto merge of #132460 - lcnr:questionable-uwu, r=compiler-errors | bors | -154/+145 |
| 2024-11-18 | interpret: do not ICE when a promoted fails with OOM | Ralf Jung | -1/+11 |
| 2024-11-18 | Rollup merge of #133163 - RalfJung:cold, r=saethlin | Guillaume Gomez | -3/+0 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -154/+145 |
| 2024-11-18 | remove pointless cold_path impl in interpreter | Ralf Jung | -3/+0 |
| 2024-11-18 | rename rustc_const_stable_intrinsic -> rustc_intrinsic_const_stable_indirect | Ralf Jung | -1/+1 |
| 2024-11-17 | Auto merge of #120370 - x17jiri:likely_unlikely_fix, r=saethlin | bors | -0/+3 |
| 2024-11-17 | Likely unlikely fix | Jiri Bobek | -0/+3 |
| 2024-11-16 | stabilize const_ptr_is_null | Ralf Jung | -0/+6 |
| 2024-11-13 | check_consts: fix error requesting feature gate when that gate is not actuall... | Ralf Jung | -12/+36 |
| 2024-11-12 | allow rustc_private feature in force-unstable-if-unmarked crates | Ralf Jung | -3/+20 |
| 2024-11-10 | ensure that all publicly reachable const fn have const stability info | Ralf Jung | -17/+20 |
| 2024-11-10 | honor rustc_const_stable_indirect in non-staged_api crate with -Zforce-unstab... | Ralf Jung | -3/+4 |
| 2024-11-09 | Rollup merge of #132823 - RalfJung:conditional-const-calls, r=fee1-dead,compi... | Jubilee | -78/+74 |
| 2024-11-09 | give a hint which feature is missing | Ralf Jung | -15/+11 |
| 2024-11-09 | require const_impl_trait gate for all conditional and trait const calls | Ralf Jung | -69/+69 |
| 2024-11-09 | make return type of get_alloc_info a struct, and reduce some code duplication... | Ralf Jung | -154/+87 |
| 2024-11-09 | interpret: get_alloc_info: also return mutability | Ralf Jung | -16/+27 |
| 2024-11-07 | Rollup merge of #132057 - RalfJung:miri-abi-compat, r=wesleywiser | Jonas Böttiger | -18/+35 |
| 2024-11-04 | when an intrinsic has a const-stable fallback body, we can easily expose it o... | Ralf Jung | -4/+12 |
| 2024-11-04 | add new rustc_const_stable_intrinsic attribute for const-stable intrinsics | Ralf Jung | -7/+10 |
| 2024-11-04 | remove support for extern-block const intrinsics | Ralf Jung | -9/+3 |
| 2024-11-04 | miri: update ABI compat checks to accept Option-like types | Ralf Jung | -18/+35 |
| 2024-11-03 | Rollup merge of #132423 - RalfJung:const-eval-align-offset, r=dtolnay | Jubilee | -82/+6 |
| 2024-11-03 | Rollup merge of #132574 - workingjubilee:abi-in-compiler, r=compiler-errors | Jubilee | -32/+29 |
| 2024-11-03 | compiler: Directly use rustc_abi in const_eval | Jubilee Young | -32/+29 |
| 2024-11-03 | Rename the FIXMEs, remove a few that dont matter anymore | Michael Goulet | -4/+5 |
| 2024-11-03 | Gate checking ~const bounds on const_trait_impl | Michael Goulet | -9/+3 |
| 2024-11-03 | remove const-support for align_offset | Ralf Jung | -82/+6 |
| 2024-11-01 | Completely deny calling functions with const conditions in MIR const check un... | Michael Goulet | -18/+22 |
| 2024-11-01 | Double-check conditional constness in MIR | Michael Goulet | -26/+62 |
| 2024-10-31 | stop using `ParamEnv::reveal` while handling MIR | lcnr | -31/+45 |
| 2024-10-31 | `ConstCx` stop using `ParamEnv::reveal` | lcnr | -11/+4 |
| 2024-10-30 | Rollup merge of #132246 - workingjubilee:campaign-on-irform, r=compiler-errors | Jubilee | -61/+77 |
| 2024-10-30 | Rollup merge of #132338 - nnethercote:rm-Engine, r=nnethercote | Matthias Krüger | -8/+4 |
| 2024-10-30 | Remove `Analysis::into_engine`. | Nicholas Nethercote | -8/+4 |
| 2024-10-29 | compiler: `rustc_abi::Abi` => `BackendRepr` | Jubilee Young | -61/+77 |
| 2024-10-29 | TypingMode :thinking: | lcnr | -13/+16 |
| 2024-10-28 | compiler: Add `is_uninhabited` and use LayoutS accessors | Jubilee Young | -12/+12 |
| 2024-10-26 | Deny calls to non-`#[const_trait]` methods in MIR constck | Deadbeef | -10/+19 |
| 2024-10-25 | tcx.is_const_fn doesn't work the way it is described, remove it | Ralf Jung | -6/+6 |
| 2024-10-25 | Re-do recursive const stability checks | Ralf Jung | -151/+299 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -4/+4 |
| 2024-10-22 | Auto merge of #131321 - RalfJung:feature-activation, r=nnethercote | bors | -6/+6 |