| Age | Commit message (Expand) | Author | Lines |
| 2020-04-03 | Ensure HAS_FREE_LOCAL_NAMES is set for ReFree | Matthew Jasper | -12/+15 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -2/+2 |
| 2020-03-01 | Clean up TypeFlags | Matthew Jasper | -61/+89 |
| 2020-03-01 | Auto merge of #69380 - Zoxc:parent-module, r=michaelwoerister | bors | -4/+2 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -2/+2 |
| 2020-02-29 | Add a `parent_module_from_def_id` query | John Kåre Alsaker | -4/+2 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -1/+1 |
| 2020-02-27 | Auto merge of #68434 - varkor:astconv-mismatch-error, r=nikomatsakis | bors | -1/+11 |
| 2020-02-24 | librustc{, codegen_ssa,infer,mir_build}: don't clone types that are copy | Matthias Krüger | -1/+1 |
| 2020-02-22 | Make return value of `check_generic_arg_count` semantically clearer | varkor | -1/+1 |
| 2020-02-22 | Refactor `create_substs_for_generic_args` a little | varkor | -0/+10 |
| 2020-02-21 | Auto merge of #69242 - cjgillot:object_violations, r=Zoxc | bors | -0/+4 |
| 2020-02-19 | Construct `AssociatedItems` from an iterator instead of a `Vec` | Dylan MacKenzie | -1/+1 |
| 2020-02-19 | Make lookup of associated item by name O(log n) | Dylan MacKenzie | -3/+79 |
| 2020-02-19 | Replace `rustc_typeck::Namespace` with `rustc_hir::def::Namespace` | Dylan MacKenzie | -1/+8 |
| 2020-02-19 | Make is_object_safe a method. | Camille GILLOT | -0/+4 |
| 2020-02-18 | Rollup merge of #69181 - skinny121:const-eval-return, r=oli-obk | Dylan DPC | -3/+3 |
| 2020-02-15 | Change const eval to return `ConstValue`, instead of `Const` as the type insi... | Ben Lewis | -3/+3 |
| 2020-02-14 | Add fast path to eq_opaque_type_and_type | Matthew Jasper | -1/+4 |
| 2020-02-14 | Erase regions in opaque types in typeck | Matthew Jasper | -3/+7 |
| 2020-02-14 | Auto merge of #69100 - cjgillot:resolve_instance, r=Zoxc | bors | -0/+1 |
| 2020-02-13 | Move resolve_instance to rustc_ty. | Camille GILLOT | -0/+1 |
| 2020-02-13 | Make TraitCandidate generic. | Camille GILLOT | -20/+2 |
| 2020-02-13 | Use HirId in TraitCandidate. | Camille GILLOT | -1/+19 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -2/+2 |
| 2020-02-12 | Auto merge of #68679 - matthewjasper:needs-type-op, r=varkor | bors | -5/+17 |
| 2020-02-10 | Add `#[repr(no_niche)]`. | Felix S. Klock II | -1/+7 |
| 2020-02-09 | Apply suggestions from code review | matthewjasper | -1/+1 |
| 2020-02-08 | Make `provided_trait_methods` use `impl Iterator` | Jonas Schievink | -2/+1 |
| 2020-02-08 | Make `associated_items` query return a slice | Jonas Schievink | -21/+3 |
| 2020-02-06 | Rollup merge of #68837 - jonas-schievink:assoc-item-lookup-2, r=estebank | Dylan DPC | -21/+10 |
| 2020-02-05 | Auto merge of #68831 - Dylan-DPC:rollup-j6x15y9, r=Dylan-DPC | bors | -2/+1 |
| 2020-02-05 | Make associated item lookup a query | Jonas Schievink | -21/+10 |
| 2020-02-04 | Auto merge of #68544 - Aaron1011:remove-overlapping-traits, r=estebank | bors | -12/+2 |
| 2020-02-04 | Rollup merge of #68818 - matthiaskrgr:misc_perf, r=Mark-Simulacrum | Dylan DPC | -1/+1 |
| 2020-02-04 | Rollup merge of #68815 - matthiaskrgr:redundant_imports, r=alexcrichton | Dylan DPC | -1/+0 |
| 2020-02-04 | Remove the `overlapping_marker_traits` feature | Aaron Hill | -12/+2 |
| 2020-02-04 | fix couple of perf related clipyp warnings | Matthias Krüger | -1/+1 |
| 2020-02-04 | remove redundant imports (clippy::single_component_path_imports) | Matthias Krüger | -1/+0 |
| 2020-02-02 | Add IS_MANUALLY_DROP to AdtFlags | Matthew Jasper | -5/+17 |
| 2020-02-02 | Use more accurate failed predicate spans | Esteban Küber | -2/+7 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -2/+3 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-27 | don't clone types that are copy, round two. | Matthias Krüger | -4/+4 |
| 2020-01-23 | unused-parens: implement for block return values | Tyler Lanphear | -1/+1 |
| 2020-01-20 | Add `ConstnessAnd` that implements `ToPredicate` | Dylan MacKenzie | -7/+49 |
| 2020-01-20 | Add `constness` field to `ty::Predicate::Trait` | Dylan MacKenzie | -7/+14 |
| 2020-01-20 | Auto merge of #68057 - Aaron1011:fix/marker-trait-selection, r=matthewjasper | bors | -4/+9 |
| 2020-01-17 | Rollup merge of #67791 - Zoxc:lift-interning, r=eddyb | Dylan DPC | -4/+6 |
| 2020-01-11 | Move some queries from rustc::ty to librustc_passes. | Camille GILLOT | -354/+2 |