| Age | Commit message (Expand) | Author | Lines |
| 2020-10-10 | Refactor how SwitchInt stores jump targets | Jonas Schievink | -97/+86 |
| 2020-10-10 | Take functions by value | Dániel Buga | -1/+1 |
| 2020-10-10 | Recognize discriminant reads as no-ops in RemoveNoopLandingPads | Tomasz Miąsko | -1/+1 |
| 2020-10-09 | Revert calculate_dtor signature change | Dániel Buga | -1/+1 |
| 2020-10-09 | Add find_map_relevant_impl | Dániel Buga | -2/+1 |
| 2020-10-07 | Auto merge of #77597 - simonvandel:uninhabited-hashset, r=jonas-schievink | bors | -2/+7 |
| 2020-10-07 | perf: UninhabitedEnumBranching void n^2 | Simon Vandel Sillesen | -2/+7 |
| 2020-10-07 | Auto merge of #77464 - ecstatic-morse:const-fn-impl-trait, r=oli-obk | bors | -3/+8 |
| 2020-10-07 | normalize substs during inlining | Bastian Kauschke | -3/+7 |
| 2020-10-07 | Rollup merge of #77582 - ecstatic-morse:disable-early-otherwise-branch, r=wes... | Dylan DPC | -1/+1 |
| 2020-10-07 | Rollup merge of #77568 - lcnr:mir-inline-def-id, r=ecstatic-morse | Dylan DPC | -17/+15 |
| 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 | Move `EarlyOtherwiseBranch` to mir-opt-level 2 | Dylan MacKenzie | -1/+1 |
| 2020-10-05 | Updates to experimental coverage counter injection | Rich Kadel | -217/+1011 |
| 2020-10-05 | Auto merge of #77549 - tmiasko:simplify-branch-same-fix, r=oli-obk | bors | -1/+2 |
| 2020-10-05 | Auto merge of #77552 - ecstatic-morse:body-def-id, r=lcnr | bors | -95/+77 |
| 2020-10-05 | inliner: use caller param_env | Bastian Kauschke | -17/+15 |
| 2020-10-05 | query_name_of_opt_const_arg -> query_name_opt_const_arg | Bastian Kauschke | -1/+1 |
| 2020-10-05 | Rollup merge of #77512 - ecstatic-morse:const-checking-allow-abort, r=RalfJung | Dylan DPC | -17/+11 |
| 2020-10-04 | Replace `(Body, WithOptConstParam)` with `Body` where possible | Dylan MacKenzie | -6/+3 |
| 2020-10-04 | Replace `(Body, DefId)` with `Body` where possible | Dylan MacKenzie | -89/+74 |
| 2020-10-04 | cleanup WithOptConstParam queries | Bastian Kauschke | -5/+1 |
| 2020-10-04 | Add comment to `Abort` match arm | ecstatic-morse | -0/+1 |
| 2020-10-04 | Remember the `MirSource` for each `Body` | Dylan MacKenzie | -269/+207 |
| 2020-10-04 | Move `MirSource` to `rustc_middle` | Dylan MacKenzie | -28/+3 |
| 2020-10-04 | Discuss cleanup blocks and `span_bug` on `Abort` | Dylan MacKenzie | -6/+11 |
| 2020-10-04 | stop promoting union field accesses in 'const' | Ralf Jung | -20/+14 |
| 2020-10-04 | Enable RenameReturnPlace MIR optimization on mir-opt-level >= 2 | Tomasz Miąsko | -6/+0 |
| 2020-10-04 | Fix miscompile in SimplifyBranchSame | Simon Vandel Sillesen | -1/+2 |
| 2020-10-03 | Allow `Abort` terminators in a const-context | Dylan MacKenzie | -14/+2 |
| 2020-10-03 | Rollup merge of #77251 - dtolnay:drop, r=Aaron1011 | Jonas Schievink | -1/+30 |
| 2020-10-02 | Auto merge of #77462 - jonas-schievink:rollup-m0rqdh5, r=jonas-schievink | bors | -3/+12 |
| 2020-10-02 | Rollup merge of #77415 - ecstatic-morse:const-checking-async-block, r=oli-obk | Jonas Schievink | -3/+12 |
| 2020-10-02 | validate: skip debuginfo | Jonas Schievink | -15/+14 |
| 2020-10-02 | validate: storage must be allocated on local use | Jonas Schievink | -3/+29 |
| 2020-10-01 | Disable the SimplifyArmIdentity mir-opt | Wesley Wiser | -1/+6 |
| 2020-10-01 | Fixme with link for re-enabling const mutation lint for Drop consts | David Tolnay | -2/+9 |
| 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-10-01 | Auto merge of #74839 - alarsyo:multiple_return_terminators, r=oli-obk | bors | -0/+41 |
| 2020-10-01 | Implement multiple return terminators optimization | Antoine Martin | -0/+41 |
| 2020-10-01 | Auto merge of #77354 - ecstatic-morse:const-checking-moar-errors, r=oli-obk | bors | -209/+242 |
| 2020-09-30 | Warn on method call mutating const, even if it has destructor | David Tolnay | -1/+1 |
| 2020-09-30 | Skip dropck::check_drop_impl in is_const_item_without_destructor | David Tolnay | -1/+2 |
| 2020-09-30 | Simplify defid destructor check | David Tolnay | -1/+1 |
| 2020-09-30 | Add justification of the destructor filter | David Tolnay | -0/+12 |
| 2020-09-30 | Bypass const_item_mutation if const's type has Drop impl | David Tolnay | -2/+11 |
| 2020-10-01 | Rollup merge of #77343 - varkor:rustc_args_required_const-validation, r=lcnr | Dylan DPC | -1/+1 |