| Age | Commit message (Expand) | Author | Lines |
| 2020-10-01 | Rollup merge of #77324 - Aaron1011:fix/const-item-mutation-ptr, r=petrochenkov | Dylan DPC | -5/+9 |
| 2020-09-30 | Rollup merge of #77037 - matthiaskrgr:cl42ppy, r=Dylan-DPC | Jonas Schievink | -1/+1 |
| 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-30 | Validate `rustc_args_required_const` | varkor | -1/+1 |
| 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 | Don't fire `const_item_mutation` lint on writes through a pointer | Aaron Hill | -5/+9 |
| 2020-09-28 | Auto merge of #77302 - RalfJung:rollup-n8gg3v6, r=RalfJung | bors | -7/+21 |
| 2020-09-28 | Rollup merge of #77170 - ecstatic-morse:const-fn-ptr, r=oli-obk | Ralf Jung | -7/+21 |
| 2020-09-27 | [mir-opt] Introduce a new flag to enable experimental/unsound mir opts | Wesley Wiser | -1/+3 |
| 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-27 | Rollup merge of #77231 - oli-obk:clippy_const_fn, r=Manishearth | Jonas Schievink | -463/+0 |
| 2020-09-27 | Rollup merge of #77107 - bugadani:perf, r=oli-obk | Jonas Schievink | -5/+5 |
| 2020-09-26 | Move `qualify_min_const_fn` out of rustc into clippy | Oliver Scherer | -463/+0 |
| 2020-09-26 | Rollup merge of #77122 - ecstatic-morse:const-fn-arithmetic, r=RalfJung,oli-obk | Ralf Jung | -9/+46 |
| 2020-09-25 | No need to call `is_min_const_fn` for side-effects | Dylan MacKenzie | -3/+0 |
| 2020-09-25 | Auto merge of #77198 - jonas-schievink:rollup-i59i41h, r=jonas-schievink | bors | -1/+1 |
| 2020-09-25 | Rollup merge of #77066 - jonas-schievink:dest-prop-borrow, r=oli-obk | Jonas Schievink | -1/+1 |
| 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 | Auto merge of #77157 - tmiasko:simplify-cfg-dup, r=jonas-schievink | bors | -1/+0 |
| 2020-09-25 | Auto merge of #76844 - simonvandel:fix-76803, r=wesleywiser | bors | -23/+34 |
| 2020-09-25 | Rollup merge of #77165 - simonvandel:do-not-fire-on-drop-and-replace, r=oli-obk | Jonas Schievink | -2/+1 |
| 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 | -2/+9 |
| 2020-09-24 | Suggest `const_fn_transmute` instead of `const_fn` | Dylan MacKenzie | -1/+8 |
| 2020-09-24 | Resolve https://github.com/rust-lang/rust/pull/76673#discussion_r494426303 | Simon Vandel Sillesen | -2/+1 |
| 2020-09-24 | EarlyOtherwiseBranch::run_pass(): don't convert Place to Place (clippy::usele... | Matthias Krüger | -1/+1 |
| 2020-09-24 | Auto merge of #76748 - tmiasko:no-op-jumps, r=matthewjasper | bors | -9/+10 |
| 2020-09-23 | Suggest `const_mut_refs` for mutable references in const fn | Dylan MacKenzie | -1/+8 |
| 2020-09-24 | Remove duplicated SimplifyCfg pass | Tomasz Miąsko | -1/+0 |
| 2020-09-23 | Auto merge of #76673 - simonvandel:remove-unneeded-drops, r=oli-obk | bors | -0/+61 |
| 2020-09-23 | Enable const prop into operands at mir_opt_level=2 | Dániel Buga | -5/+5 |
| 2020-09-23 | Auto merge of #76659 - simonvandel:76432, r=oli-obk | bors | -21/+22 |