| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2024-10-22 | terminology: #[feature] *enables* a feature (instead of "declaring" or "activ... | Ralf Jung | -6/+6 |
| 2024-10-21 | Rollup merge of #130350 - RalfJung:strict-provenance, r=dtolnay | Matthias Krüger | -1/+0 |
| 2024-10-21 | move strict provenance lints to new feature gate, remove old feature gates | Ralf Jung | -1/+0 |
| 2024-10-21 | Auto merge of #131988 - matthiaskrgr:rollup-tx173wn, r=matthiaskrgr | bors | -49/+4 |
| 2024-10-21 | Auto merge of #130950 - compiler-errors:yeet-eval, r=BoxyUwU | bors | -2/+4 |
| 2024-10-20 | Rip out old effects var handling code from traits | Michael Goulet | -49/+4 |
| 2024-10-19 | Get rid of const eval_* and try_eval_* helpers | Michael Goulet | -2/+4 |
| 2024-10-19 | interpret errors: add map_err_kind, rename InterpError -> InterpErrorKind | Ralf Jung | -42/+45 |
| 2024-10-16 | Auto merge of #131767 - cuviper:bump-stage0, r=Mark-Simulacrum | bors | -2/+2 |
| 2024-10-16 | Auto merge of #131481 - nnethercote:rm-GenKillSet, r=cjgillot | bors | -7/+2 |
| 2024-10-15 | update bootstrap configs | Josh Stone | -2/+2 |
| 2024-10-15 | Rollup merge of #130568 - eduardosm:const-float-methods, r=RalfJung,tgross35 | Michael Goulet | -19/+99 |
| 2024-10-15 | Make some float methods unstable `const fn` | Eduardo Sánchez Muñoz | -0/+80 |
| 2024-10-14 | De-duplicate and move `adjust_nan` to `InterpCx` | Eduardo Sánchez Muñoz | -19/+19 |
| 2024-10-14 | Merge `AnalysisDomain` into `Analysis`. | Nicholas Nethercote | -7/+2 |
| 2024-10-12 | miri: avoid cloning AllocExtra | Ralf Jung | -14/+19 |
| 2024-10-10 | Rollup merge of #131397 - RalfJung:const-escaping-ref-teach, r=chenyukang | Matthias Krüger | -9/+10 |
| 2024-10-08 | compiler: Factor rustc_target::abi out of const_eval | Jubilee Young | -7/+8 |
| 2024-10-08 | fix/update teach_note from 'escaping mutable ref/ptr' const-check | Ralf Jung | -9/+10 |
| 2024-10-07 | Auto merge of #131068 - RalfJung:immediate-offset-sanity-check, r=nnethercote | bors | -31/+45 |
| 2024-10-06 | various fixes for `naked_asm!` implementation | Folkert de Vries | -1/+1 |
| 2024-10-04 | Use wide pointers consistenly across the compiler | Urgau | -3/+3 |
| 2024-10-03 | interpret: Immediate::offset: use shared sanity-check function to ensure inva... | Ralf Jung | -31/+45 |
| 2024-10-02 | Auto merge of #131006 - RalfJung:immediate-sanity, r=saethlin | bors | -3/+6 |
| 2024-10-01 | make InterpResult a dedicated type to avoid accidentally discarding the error | Ralf Jung | -494/+501 |
| 2024-09-30 | panic when an interpreter error gets unintentionally discarded | Ralf Jung | -24/+37 |
| 2024-09-29 | interpret: always enable write_immediate sanity checks | Ralf Jung | -3/+6 |
| 2024-09-29 | cleanup: don't `.into()` identical types | Matthias Krüger | -5/+2 |
| 2024-09-27 | Rollup merge of #130826 - fmease:compiler-mv-obj-safe-dyn-compat, r=compiler-... | Matthias Krüger | -1/+1 |
| 2024-09-26 | Stabilize `const_refs_to_static` | Ding Xiang Fei | -29/+0 |
| 2024-09-25 | Compiler: Rename "object safe" to "dyn compatible" | León Orell Valerian Liehr | -1/+1 |
| 2024-09-24 | be even more precise about "cast" vs "coercion" | Lukas Markeffsky | -6/+8 |
| 2024-09-24 | unify dyn* coercions with other pointer coercions | Lukas Markeffsky | -7/+7 |
| 2024-09-23 | Rollup merge of #130727 - compiler-errors:objects, r=RalfJung | Michael Goulet | -47/+66 |
| 2024-09-23 | Check vtable projections for validity in miri | Michael Goulet | -47/+66 |