| Age | Commit message (Expand) | Author | Lines |
| 2021-02-15 | Only store a LocalDefId in hir::TraitItem. | Camille GILLOT | -14/+33 |
| 2021-02-15 | Only store a LocalDefId in hir::Item. | Camille GILLOT | -27/+48 |
| 2021-02-15 | Use an ItemId inside mir::GlobalAsm. | Camille GILLOT | -1/+13 |
| 2021-02-15 | Use ItemId as a strongly typed index. | Camille GILLOT | -7/+16 |
| 2021-02-15 | Add assertions on HIR enum sizes. | Camille GILLOT | -4/+15 |
| 2021-02-15 | name async generators something more human friendly in type error diagnostics | Gus Wynn | -2/+21 |
| 2021-02-15 | Add `ptr::Pointee` trait (for all types) and `ptr::metadata` function | Simon Sapin | -0/+4 |
| 2021-02-14 | Rollup merge of #81720 - klensy:smallvec-update, r=Mark-Simulacrum | Dylan DPC | -1/+1 |
| 2021-02-14 | Rollup merge of #80920 - rylev:check_attr-refactor, r=davidtwco | Dylan DPC | -0/+2 |
| 2021-02-14 | bumped smallvec deps | klensy | -1/+1 |
| 2021-02-13 | Remove ProjectionTy::from_ref_and_name | Matthew Jasper | -0/+1 |
| 2021-02-09 | Visit more targets when checking attrs | Ryan Levick | -0/+2 |
| 2021-02-09 | Rename HIR UnOp variants | Ömer Sinan Ağacan | -8/+8 |
| 2021-02-06 | Rollup merge of #81680 - camsteffen:primty, r=oli-obk | Jonas Schievink | -0/+49 |
| 2021-02-05 | Rollup merge of #79554 - b-naber:generic-associated-types-in-trait-paths, r=j... | Mara Bos | -0/+2 |
| 2021-02-04 | Add unit test to ensure that both parts of a DefPathHash depend on the defini... | Michael Woerister | -3/+48 |
| 2021-02-04 | add generic args to hir::TypeBinding | b-naber | -0/+2 |
| 2021-02-04 | Stabilize feature(iterator_fold_self): Iterator::reduce | Mara Bos | -1/+0 |
| 2021-02-04 | Rename Iterator::fold_first to reduce. | Mara Bos | -1/+1 |
| 2021-02-04 | Add more explanation to local DefPathHash collision case. | Michael Woerister | -1/+8 |
| 2021-02-03 | Refactor out PrimitiveTypeTable | Cameron Steffen | -0/+49 |
| 2021-02-02 | Let a portion of DefPathHash uniquely identify the DefPath's crate. | Michael Woerister | -20/+41 |
| 2021-02-02 | Bump rustfmt version | Mark Rousskov | -4/+4 |
| 2021-02-01 | Fixed #[inline] to be warned in fields, arms, macro defs | Danuel | -0/+6 |
| 2021-01-31 | Rollup merge of #80470 - SimonSapin:array-intoiter-type, r=m-ou-se | Jonas Schievink | -1/+0 |
| 2021-01-27 | Auto merge of #81393 - pnkfelix:issue-81296-make-weak-item-traversal-determin... | bors | -3/+3 |
| 2021-01-26 | Auto merge of #80692 - Aaron1011:feature/query-result-debug, r=estebank | bors | -1/+1 |
| 2021-01-25 | This should address issue 81294. | Felix S. Klock II | -3/+3 |
| 2021-01-24 | Auto merge of #80919 - cjgillot:defkey-span, r=oli-obk | bors | -0/+4 |
| 2021-01-23 | Iterate DefId to encode spans. | Camille GILLOT | -0/+4 |
| 2021-01-21 | Add loop head span to hir | Esteban Küber | -2/+4 |
| 2021-01-16 | Enforce that query results implement Debug | Aaron Hill | -1/+1 |
| 2021-01-17 | resolve: Reject ambiguity built-in attr vs different built-in attr | Vadim Petrochenkov | -3/+4 |
| 2021-01-14 | Use Option::map_or instead of `.map(..).unwrap_or(..)` | LingMan | -1/+1 |
| 2021-01-14 | Auto merge of #79328 - c410-f3r:hir-if, r=matthewjasper | bors | -3/+12 |
| 2021-01-13 | Auto merge of #77524 - Patryk27:fixes/66228, r=estebank | bors | -12/+46 |
| 2021-01-12 | Separate out a `hir::Impl` struct | Joshua Nelson | -19/+22 |
| 2021-01-10 | Rework diagnostics for wrong number of generic args | Patryk Wychowaniec | -12/+46 |
| 2021-01-07 | Reintroduce hir::ExprKind::If | Caio | -3/+12 |
| 2021-01-05 | Rollup merge of #80538 - JulianKnodt:err_usize, r=lcnr | Yuki Okushi | -0/+9 |
| 2021-01-04 | Add check for array/usize mismatch in astconv | kadmin | -0/+9 |
| 2021-01-02 | reduce borrowing and (de)referencing around match patterns (clippy::match_ref... | Matthias Krüger | -10/+10 |
| 2021-01-01 | first pass at default values for const generics | Julian Knodt | -1/+8 |
| 2020-12-31 | Rollup merge of #80551 - lcnr:const-arg-wildcard, r=varkor | Dylan DPC | -5/+5 |
| 2020-12-31 | support pattern as const parents in type_of | Bastian Kauschke | -5/+5 |
| 2020-12-30 | Rollup merge of #80495 - jyn514:rename-empty, r=petrochenkov | Mara Bos | -1/+1 |
| 2020-12-30 | Rename kw::Invalid -> kw::Empty | Joshua Nelson | -1/+1 |
| 2020-12-29 | Remove `compile-fail` test suite | Vadim Petrochenkov | -1/+1 |
| 2020-12-29 | Stabilize by-value `[T; N]` iterator `core::array::IntoIter` | Simon Sapin | -1/+0 |
| 2020-12-19 | Auto merge of #79073 - davidtwco:issue-78957-const-param-attrs, r=lcnr | bors | -0/+23 |