| Age | Commit message (Expand) | Author | Lines |
| 2020-09-22 | Useful derives on `ops::Status` | Dylan MacKenzie | -0/+1 |
| 2020-09-22 | Miri: more informative deallocation error messages | Ralf Jung | -4/+8 |
| 2020-09-21 | Rollup merge of #76888 - matthiaskrgr:clippy_single_match_2, r=Dylan-DPC | ecstatic-morse | -11/+5 |
| 2020-09-21 | Rollup merge of #76807 - ecstatic-morse:const-checking-staged-api, r=oli-obk | ecstatic-morse | -65/+109 |
| 2020-09-21 | Rollup merge of #76581 - lcnr:bound-too-generic, r=eddyb | ecstatic-morse | -4/+2 |
| 2020-09-21 | Add optimization to avoid load of address | Simon Vandel Sillesen | -2/+115 |
| 2020-09-21 | Auto merge of #74040 - lcnr:const-occurs-check, r=nikomatsakis | bors | -5/+10 |
| 2020-09-21 | fix InterpCx resolve | Bastian Kauschke | -5/+10 |
| 2020-09-21 | fix typo in docs and comments | yuk1ty | -1/+1 |
| 2020-09-21 | Let user see the full type of type-length limit error | Kornel Lesiński | -26/+40 |
| 2020-09-20 | Auto merge of #75119 - simonvandel:early-otherwise, r=oli-obk | bors | -0/+341 |
| 2020-09-20 | Add unstably const support for assume intrinsic | Lzu Tao | -0/+6 |
| 2020-09-20 | Rollup merge of #76890 - matthiaskrgr:matches_simpl, r=lcnr | Ralf Jung | -6/+6 |
| 2020-09-20 | Correct file path after some restructures in compiler | Lzu Tao | -2/+2 |
| 2020-09-20 | enable on mir-opt-level=1 to test perf | Simon Vandel Sillesen | -1/+1 |
| 2020-09-20 | add cleanup of cfg | Simon Vandel Sillesen | -0/+10 |
| 2020-09-20 | insert storageDead for not equal temp | Simon Vandel Sillesen | -11/+27 |
| 2020-09-20 | correct comment | Simon Vandel Sillesen | -1/+1 |
| 2020-09-20 | Update src/librustc_mir/transform/early_otherwise_branch.rs | Simon Vandel Sillesen | -1/+1 |
| 2020-09-20 | New MIR optimization pass to reduce branches on match of tuples of enums | Simon Vandel Sillesen | -0/+315 |
| 2020-09-20 | Implement destructuring for all aggregates and for references | Oliver Scherer | -2/+1 |
| 2020-09-20 | Auto merge of #76964 - RalfJung:rollup-ybn06fs, r=RalfJung | bors | -16/+16 |
| 2020-09-20 | Add a query for dereferencing constants of reference type | Oliver Scherer | -1/+45 |
| 2020-09-20 | Rollup merge of #76828 - matthiaskrgr:clippy_manual_strip, r=lcnr | Ralf Jung | -5/+4 |
| 2020-09-20 | Rollup merge of #76825 - lcnr:array-windows-apply, r=varkor | Ralf Jung | -7/+2 |
| 2020-09-20 | Rollup merge of #76821 - est31:remove_redundant_nightly_features, r=oli-obk,M... | Ralf Jung | -3/+0 |
| 2020-09-20 | Rollup merge of #76818 - hbina:dont_compile_regex_all_the_time, r=ecstatic-morse | Ralf Jung | -1/+10 |
| 2020-09-20 | use if let instead of single match arm expressions to compact code and reduce... | Matthias Krüger | -11/+5 |
| 2020-09-20 | Auto merge of #74949 - oli-obk:validate_const_eval_raw, r=RalfJung | bors | -136/+111 |
| 2020-09-20 | miri: correctly deal with `ConstKind::Bound` | Bastian Kauschke | -4/+2 |
| 2020-09-20 | Auto merge of #76411 - RalfJung:promote-in-const-fn, r=ecstatic-morse | bors | -26/+35 |
| 2020-09-20 | use `array_windows` instead of `windows` in the compiler | Bastian Kauschke | -7/+2 |
| 2020-09-20 | Auto merge of #75346 - davidtwco:issue-69925-polymorphic-instancedef-fnptrshi... | bors | -29/+31 |
| 2020-09-20 | Auto merge of #72632 - jonas-schievink:dest-prop, r=oli-obk | bors | -1/+1067 |
| 2020-09-19 | Add assertion for len of vecs | Simon Vandel Sillesen | -3/+4 |
| 2020-09-19 | fix some comments | Ralf Jung | -6/+7 |
| 2020-09-19 | never promote non-const operations; revert STATIC promotion change | Ralf Jung | -4/+14 |
| 2020-09-19 | fix doc comment | Ralf Jung | -4/+4 |
| 2020-09-19 | cleanup promotion const_kind checks | Ralf Jung | -30/+28 |
| 2020-09-19 | Fix #76803 | Simon Vandel Sillesen | -23/+33 |
| 2020-09-19 | Rollup merge of #76757 - matthiaskrgr:clippy_try_into, r=lcnr | Ralf Jung | -11/+3 |
| 2020-09-19 | Rollup merge of #75502 - ecstatic-morse:implicit-promotion-in-const-fn, r=Ral... | Ralf Jung | -1/+8 |
| 2020-09-19 | Reflect the "do not call this query directly" mentality in its name | Oliver Scherer | -4/+4 |
| 2020-09-19 | Rustfmt | Oliver Scherer | -2/+2 |
| 2020-09-19 | Address review comments | Oliver Scherer | -27/+27 |
| 2020-09-19 | Unify the names of const eval queries and their return types | Oliver Scherer | -15/+15 |
| 2020-09-19 | Rename const eval queries to reflect the validation changes | Oliver Scherer | -11/+11 |
| 2020-09-19 | Do not call the `const_eval` query in mir interpretation except for caching o... | Oliver Scherer | -34/+8 |
| 2020-09-19 | Replace `and_then` `map_err` `and_then` chain with a match | Oliver Scherer | -15/+16 |
| 2020-09-19 | `turn_into_const` is infallible | Oliver Scherer | -11/+7 |