| Age | Commit message (Expand) | Author | Lines |
| 2019-07-11 | Move rustc_borrowck -> rustc_ast_borrowck | Matthew Jasper | -730/+0 |
| 2019-07-11 | Remove rustc_mir dependency from rustc_borrowck | Matthew Jasper | -27/+6 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -5/+5 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -33/+49 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -5/+5 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -18/+18 |
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -4/+4 |
| 2019-02-08 | librustc_borrowck => 2018 | Taiki Endo | -7/+8 |
| 2019-01-15 | Remove an unused function argument | Oliver Scherer | -4/+0 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-10-26 | Remove redundant clone | Shotaro Yamada | -3/+3 |
| 2018-08-22 | Remove Ty prefix from Ty{Adt|Array|Slice|RawPtr|Ref|FnDef|FnPtr|Dynamic|Closu... | varkor | -2/+2 |
| 2018-07-31 | Remove dead code | Mark Rousskov | -27/+6 |
| 2018-07-31 | Move dataflow to borrowck | Mark Rousskov | -4/+2 |
| 2018-05-26 | Use `Ident`s for fields in HIR | Vadim Petrochenkov | -2/+4 |
| 2018-04-12 | Avoid comparing fields by name when possible | Vadim Petrochenkov | -4/+4 |
| 2018-04-12 | AST/HIR: Merge field access expressions for named and numeric fields | Vadim Petrochenkov | -3/+2 |
| 2018-01-29 | rustc: replace "lvalue" terminology with "place" in the code. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-01-08 | rustc::ty: Rename `struct_variant` to `non_enum_variant` | Robin Kruppe | -2/+2 |
| 2017-09-01 | rustc: use hir::ItemLocalId instead of ast::NodeId in CodeExtent. | Eduard-Mihai Burtescu | -4/+2 |
| 2017-09-01 | rustc: use hir::ItemLocalId instead of ast::NodeId in CFG. | Eduard-Mihai Burtescu | -32/+23 |
| 2017-08-19 | rustc: Remove some dead code | Vadim Petrochenkov | -45/+0 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -10/+10 |
| 2017-07-31 | borrowck: skip CFG construction when there is nothing to propagate | Ariel Ben-Yehuda | -0/+9 |
| 2017-06-01 | rustc: avoid using MethodCallee's signature where possible. | Eduard-Mihai Burtescu | -1/+1 |
| 2017-05-24 | Remove all instances of fragment_infos and fragment sets | Paul Faria | -19/+0 |
| 2017-04-30 | introduce per-fn RegionMaps | Taylor Cramer | -5/+8 |
| 2017-04-30 | intern CodeExtents | Niko Matsakis | -2/+2 |
| 2017-04-30 | On-demandify region mapping | Taylor Cramer | -2/+2 |
| 2017-04-08 | Fix move checking for nested union fields | Vadim Petrochenkov | -15/+15 |
| 2017-01-26 | rustc: don't call the HIR AST. | Eduard-Mihai Burtescu | -1/+1 |
| 2016-12-28 | rustc: move function arguments into hir::Body. | Eduard-Mihai Burtescu | -3/+2 |
| 2016-12-28 | rustc: separate bodies for static/(associated)const and embedded constants. | Eduard-Mihai Burtescu | -1/+1 |
| 2016-11-10 | rustc: use an Expr instead of a Block for function bodies. | Eduard Burtescu | -1/+1 |
| 2016-11-08 | Replace FnvHasher use with FxHasher. | Nicholas Nethercote | -3/+3 |
| 2016-10-31 | Changed most vec! invocations to use square braces | iirelu | -1/+1 |
| 2016-09-08 | Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt` | Vadim Petrochenkov | -26/+31 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -4/+4 |
| 2016-09-03 | Address comments and add requested tests | Vadim Petrochenkov | -6/+6 |
| 2016-09-03 | Support unions in borrow checker | Vadim Petrochenkov | -1/+56 |
| 2016-07-03 | prefer `if let` to match with `None => {}` arm in some places | Zack M. Davis | -5/+2 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -1/+1 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -7/+7 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -13/+8 |
| 2016-04-06 | syntax: dismantle ast_util. | Eduard Burtescu | -2/+2 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -1/+1 |
| 2016-03-31 | librustc_borrowck: use bug!(), span_bug!() | Benjamin Herr | -1/+1 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -2/+2 |
| 2016-03-03 | Rename middle::ty::ctxt to TyCtxt | Jeffrey Seyfried | -8/+8 |
| 2016-02-12 | Autoderef in librustc_borrowck | Jonas Schievink | -4/+4 |