| Age | Commit message (Expand) | Author | Lines |
| 2019-08-15 | hygiene: `ExpnInfo` -> `ExpnData` | Vadim Petrochenkov | -34/+34 |
| 2019-08-15 | hygiene: Merge `ExpnInfo` and `InternalExpnData` | Vadim Petrochenkov | -2/+2 |
| 2019-08-15 | hygiene: Remove `Option`s from functions returning `ExpnInfo` | Vadim Petrochenkov | -11/+7 |
| 2019-08-15 | syntax_pos: `NO_EXPANSION`/`SyntaxContext::empty()` -> `SyntaxContext::root()` | Vadim Petrochenkov | -2/+2 |
| 2019-08-15 | Auto merge of #63575 - Centril:rollup-anlv9g5, r=Centril | bors | -0/+3 |
| 2019-08-14 | Handle cfg(bootstrap) throughout | Mark Rousskov | -9/+9 |
| 2019-08-12 | Resolve types when suggesting boxed closure | Esteban Küber | -0/+3 |
| 2019-08-12 | Rollup merge of #62108 - Zoxc:sharded-queries, r=oli-obk | Mazdak Farrokhzad | -26/+28 |
| 2019-08-11 | Rollup merge of #63464 - Mark-Simulacrum:deref-instance, r=eddyb | Mark Rousskov | -2/+2 |
| 2019-08-11 | Copy ty::Instance instead of passing by reference | Mark Rousskov | -2/+2 |
| 2019-08-11 | Remove `HAS_NORMALIZABLE_PROJECTION` | Matthew Jasper | -17/+8 |
| 2019-08-11 | Remove `is_self` and `has_self_ty` methods | Matthew Jasper | -48/+16 |
| 2019-08-11 | proper doc comment for 'recovered' field of variant | Ralf Jung | -2/+2 |
| 2019-08-11 | note a FIXME | Ralf Jung | -0/+1 |
| 2019-08-11 | add tuple_fields convenience method and use it in a few places | Ralf Jung | -8/+20 |
| 2019-08-11 | fix a comment | Ralf Jung | -1/+1 |
| 2019-08-10 | Rollup merge of #63350 - iluuu1994:use-associated-type-bounds, r=Centril | Mazdak Farrokhzad | -7/+6 |
| 2019-08-08 | Use associated_type_bounds where applicable - closes #61738 | Ilija Tovilo | -7/+6 |
| 2019-08-07 | Auto merge of #62457 - zackmdavis:minimax_search_and_the_structure_of_cogniti... | bors | -4/+21 |
| 2019-08-07 | Auto merge of #61919 - alexreg:fix-atb-1, r=nikomatsakis | bors | -12/+13 |
| 2019-08-06 | pretty-pretty extremal constants! | Zack M. Davis | -4/+21 |
| 2019-08-07 | Rollup merge of #63034 - tmandry:reduce-generator-size-regressions, r=cramertj | Mazdak Farrokhzad | -10/+39 |
| 2019-08-06 | Fix generator size regressions due to optimization | Tyler Mandry | -0/+21 |
| 2019-08-05 | Get rid of one more useless `lift` invocation | Oliver Scherer | -2/+1 |
| 2019-08-05 | Prevent array length printing cycle with debug assertions | Oliver Scherer | -1/+6 |
| 2019-08-05 | Address comment and formatting nits | Oliver Scherer | -2/+2 |
| 2019-08-05 | Clear the ParamEnv where its information is irrelevant | Oliver Scherer | -13/+17 |
| 2019-08-05 | Fiddle param env through to `try_eval_bits` in most places | Oliver Scherer | -25/+36 |
| 2019-08-05 | Don't abort on unevaluated constants without at least tryting to eval them | Oliver Scherer | -21/+37 |
| 2019-08-05 | Clean up the `ty::Const::assert*` methods | Oliver Scherer | -25/+11 |
| 2019-08-05 | Ensure `type_param_predicates` fn only returns predicates for type param with... | Alexander Regueiro | -1/+1 |
| 2019-08-05 | A few cosmetic improvements. | Alexander Regueiro | -13/+14 |
| 2019-08-05 | Auto merge of #63079 - RalfJung:ctfe-no-align, r=oli-obk | bors | -2/+2 |
| 2019-08-03 | Auto merge of #63059 - Centril:sound-bind-by-move, r=matthewjasper | bors | -1/+1 |
| 2019-08-03 | Auto merge of #62946 - RalfJung:miri_type_dispatch_first, r=oli-obk | bors | -0/+6 |
| 2019-08-03 | Auto merge of #63180 - varkor:trait-alias-impl-trait, r=Centril | bors | -19/+20 |
| 2019-08-03 | Rollup merge of #63208 - tmandry:issue-62658, r=cramertj | Mazdak Farrokhzad | -0/+2 |
| 2019-08-02 | add is_any_ptr type test; this also helps pacify tidy | Ralf Jung | -0/+6 |
| 2019-08-02 | CTFE: simplify Value type by not checking for alignment | Ralf Jung | -2/+2 |
| 2019-08-02 | Address review comments | varkor | -1/+1 |
| 2019-08-02 | Replace `exist_ty` and `ExistTy` with `opaque_ty` and `OpaqueTy` | varkor | -2/+2 |
| 2019-08-02 | Fix fallout after rebase | varkor | -1/+1 |
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -17/+18 |
| 2019-08-01 | Round generator sizes to multiple of their alignment | Tyler Mandry | -0/+2 |
| 2019-07-31 | Remove redundant method with const variable resolution | varkor | -7/+5 |
| 2019-07-30 | Do not downgrade NLL errors for bind_by_move_pattern_guards when AST says it ... | Mazdak Farrokhzad | -1/+1 |
| 2019-07-29 | Wrap promoted generator fields in MaybeUninit | Tyler Mandry | -10/+18 |
| 2019-07-28 | Fix `cfg(parallel_compiler)` mode | Vadim Petrochenkov | -33/+15 |
| 2019-07-28 | Remove lint annotations in specific crates that are already enforced by rustb... | Vadim Petrochenkov | -1/+2 |
| 2019-07-26 | Rollup merge of #62964 - RalfJung:ty-tests, r=Centril | Mazdak Farrokhzad | -2/+2 |