| Age | Commit message (Expand) | Author | Lines |
| 2020-10-25 | Rollup merge of #78208 - liketechnik:issue-69399, r=oli-obk | Yuki Okushi | -7/+15 |
| 2020-10-23 | rename allow_internal_unstable() to rustc_allow_const_fn_unstable() in rustc_mir | Florian Warzecha | -3/+11 |
| 2020-10-22 | Fix const core::panic!(non_literal_str). | Mara Bos | -1/+3 |
| 2020-10-22 | Rollup merge of #77420 - ecstatic-morse:const-checking-raw-mut-ref, r=davidtwco | Yuki Okushi | -29/+15 |
| 2020-10-21 | switch allow_internal_unstable const fns to rustc_allow_const_fn_unstable | Florian Warzecha | -4/+4 |
| 2020-10-05 | Make `impl Trait` unstable in all contexts | Dylan MacKenzie | -6/+2 |
| 2020-10-05 | Remove `fn` from feature name | Dylan MacKenzie | -2/+2 |
| 2020-10-05 | Add `#![feature(const_fn_impl)]` | Dylan MacKenzie | -2/+11 |
| 2020-10-05 | Auto merge of #77552 - ecstatic-morse:body-def-id, r=lcnr | bors | -26/+30 |
| 2020-10-04 | Replace `(Body, DefId)` with `Body` where possible | Dylan MacKenzie | -26/+30 |
| 2020-10-04 | Add comment to `Abort` match arm | ecstatic-morse | -0/+1 |
| 2020-10-04 | Discuss cleanup blocks and `span_bug` on `Abort` | Dylan MacKenzie | -6/+11 |
| 2020-10-03 | Allow `Abort` terminators in a const-context | Dylan MacKenzie | -14/+2 |
| 2020-10-01 | Unify `&mut` and `&raw mut` const-checking errors | Dylan MacKenzie | -29/+15 |
| 2020-10-01 | Give better const-checking error for `async` blocks | Dylan MacKenzie | -3/+12 |
| 2020-09-30 | Remove E0019, use E0015 for inline assembly in a const | Dylan MacKenzie | -2/+2 |
| 2020-09-30 | Better span for attribute suggestions | Dylan MacKenzie | -11/+19 |
| 2020-09-29 | Remove default `build_error` impl | Dylan MacKenzie | -29/+12 |
| 2020-09-29 | Remove machinery for halting error output | Dylan MacKenzie | -15/+0 |
| 2020-09-29 | Don't stop const-checking after erroneous trait bound | Dylan MacKenzie | -6/+17 |
| 2020-09-29 | Emit multiple function pointer errors from const-checker | Dylan MacKenzie | -4/+0 |
| 2020-09-29 | Don't emit duplicate errors for the return place | Dylan MacKenzie | -1/+2 |
| 2020-09-29 | Priority levels | Dylan MacKenzie | -10/+74 |
| 2020-09-29 | Bless mut tests | Dylan MacKenzie | -2/+0 |
| 2020-09-29 | Give `MutDeref` a real error message | Dylan MacKenzie | -0/+9 |
| 2020-09-29 | Remove `ops::non_const` | Dylan MacKenzie | -58/+55 |
| 2020-09-29 | Fix "unstable in stable" error | Dylan MacKenzie | -1/+6 |
| 2020-09-29 | Return a `DiagnosticBuilder` from structured errors | Dylan MacKenzie | -75/+64 |
| 2020-09-29 | Forbid generator-specific MIR in all const-contexts | Dylan MacKenzie | -5/+3 |
| 2020-09-29 | `delay_span_bug` if const-checking an `async` function | Dylan MacKenzie | -2/+17 |
| 2020-09-29 | Continue after `impl Trait` in `const fn` | Dylan MacKenzie | -2/+0 |
| 2020-09-29 | Continue const-checking after errors when easy | Dylan MacKenzie | -24/+0 |
| 2020-09-28 | Rollup merge of #77170 - ecstatic-morse:const-fn-ptr, r=oli-obk | Ralf Jung | -7/+21 |
| 2020-09-27 | Add a feature gate for basic function pointer use in `const fn` | Dylan MacKenzie | -7/+21 |
| 2020-09-27 | Rollup merge of #77203 - ecstatic-morse:const-stability-attr-checks, r=oli-obk | Jonas Schievink | -3/+0 |
| 2020-09-25 | No need to call `is_min_const_fn` for side-effects | Dylan MacKenzie | -3/+0 |
| 2020-09-25 | Put floating point arithmetic behind its own feature gate | Dylan MacKenzie | -9/+22 |
| 2020-09-25 | Add `const_fn_floating_point_arithmetic` | Dylan MacKenzie | -0/+24 |
| 2020-09-25 | Rollup merge of #77160 - ecstatic-morse:const-fn-transmute-suggestion, r=oli-obk | Jonas Schievink | -1/+8 |
| 2020-09-25 | Rollup merge of #77136 - ecstatic-morse:issue-77134, r=oli-obk | Jonas Schievink | -1/+8 |
| 2020-09-25 | Rollup merge of #76724 - ecstatic-morse:dataflow-pass-names, r=lcnr | Jonas Schievink | -0/+1 |
| 2020-09-24 | Suggest `const_fn_transmute` instead of `const_fn` | Dylan MacKenzie | -1/+8 |
| 2020-09-23 | Suggest `const_mut_refs` for mutable references in const fn | Dylan MacKenzie | -1/+8 |
| 2020-09-22 | Use correct feature gate for unsizing casts | Dylan MacKenzie | -5/+1 |
| 2020-09-22 | Replace missing comment | Dylan MacKenzie | -0/+2 |
| 2020-09-22 | Use the same name everywhere for `is_const_stable_const_fn` | Dylan MacKenzie | -2/+4 |
| 2020-09-22 | Update const-checker to replicate `qualify_min_const_fn` | Dylan MacKenzie | -73/+268 |
| 2020-09-22 | Add structured errors for `qualify_min_const_fn` checks | Dylan MacKenzie | -3/+220 |
| 2020-09-22 | Allow errors to abort const checking when emitted | Dylan MacKenzie | -4/+22 |
| 2020-09-22 | Return `true` if `check_const` emits an error | Dylan MacKenzie | -7/+11 |