| Age | Commit message (Expand) | Author | Lines |
| 2017-01-06 | rebase: remove `tcx` from `associated_item` | Niko Matsakis | -4/+3 |
| 2017-01-06 | Dont check stability for items that are not pub to universe. | Felix S. Klock II | -1/+36 |
| 2016-12-15 | Warn unused type aliases | Seo Sanghyeon | -0/+1 |
| 2016-12-15 | Remove now unnecessary code | Seo Sanghyeon | -18/+5 |
| 2016-12-11 | Auto merge of #38250 - michaelwoerister:trait-methods-in-reachable, r=alexcri... | bors | -3/+22 |
| 2016-12-09 | move the check for instantiation from metadata encoding to the actual decisio... | Oliver Schneider | -0/+8 |
| 2016-12-08 | Extend middle::reachable to also consider provided trait methods. | Michael Woerister | -3/+22 |
| 2016-12-06 | Auto merge of #37973 - vadimcn:dllimport, r=alexcrichton | bors | -5/+6 |
| 2016-12-05 | Refactor ty::FnSig to privatize all fields | Mark-Simulacrum | -2/+2 |
| 2016-12-05 | Refactor symbol export list generation. | Michael Woerister | -0/+3 |
| 2016-12-05 | trans: Rename `reachable` to `exported_symbols` where appropriate. | Michael Woerister | -2/+2 |
| 2016-12-04 | Auto merge of #38087 - jooert:remove_unmarked, r=petrochenkov | bors | -17/+1 |
| 2016-12-04 | Auto merge of #37920 - nikomatsakis:compile-time-regression-37864, r=mw | bors | -8/+10 |
| 2016-12-02 | pacify the mercilous tidy | Niko Matsakis | -1/+3 |
| 2016-12-02 | Auto merge of #38053 - eddyb:lazy-9, r=nikomatsakis | bors | -5/+5 |
| 2016-12-01 | Emit 'dllimport' attribute for dylib foreign items on Windows. | Vadim Chugunov | -5/+6 |
| 2016-12-02 | limit the length of types in monomorphization | Ariel Ben-Yehuda | -5/+16 |
| 2016-12-01 | in region, treat current (and future) item-likes alike | Niko Matsakis | -8/+8 |
| 2016-11-30 | Remove the `unmarked_api` feature | Johannes Oertel | -17/+1 |
| 2016-11-30 | Auto merge of #37954 - eddyb:rustdoc-2, r=alexcrichton | bors | -0/+2 |
| 2016-11-30 | rustc: track the Span's of definitions across crates. | Eduard-Mihai Burtescu | -0/+2 |
| 2016-11-29 | Auto merge of #37965 - Mark-Simulacrum:trait-obj-to-exis-predicate, r=eddyb | bors | -25/+8 |
| 2016-11-29 | rustc: simplify AdtDef by removing the field types and ty::ivar. | Eduard-Mihai Burtescu | -3/+3 |
| 2016-11-29 | rustc: remove type information from TraitDef. | Eduard-Mihai Burtescu | -2/+2 |
| 2016-11-29 | revamp `Visitor` with a single method for controlling nested visits | Niko Matsakis | -52/+57 |
| 2016-11-29 | Fix rebase breakage | Florian Diebold | -15/+22 |
| 2016-11-29 | Split nested_visit_mode function off from nested_visit_map | Florian Diebold | -29/+47 |
| 2016-11-29 | Refactor inlined items some more | Florian Diebold | -45/+24 |
| 2016-11-29 | Add make tidy fixes | Florian Diebold | -7/+21 |
| 2016-11-29 | Fix cross-crate associated constant evaluation | Florian Diebold | -0/+1 |
| 2016-11-29 | Save bodies of functions for inlining into other crates | Florian Diebold | -22/+92 |
| 2016-11-29 | rustc: replace body exprs by their ids | Florian Diebold | -121/+164 |
| 2016-11-28 | Adds TyCtxt::require_lang_item(LangItem) to simplify lang item requires. | Mark-Simulacrum | -0/+8 |
| 2016-11-28 | Remove BuiltinBound and BuiltinBounds. | Mark-Simulacrum | -25/+0 |
| 2016-11-28 | Auto merge of #38024 - jseyfried:avoid_needless_proc_macro_deps, r=nrc | bors | -2/+16 |
| 2016-11-28 | Avoid loading needless proc-macro dependencies. | Jeffrey Seyfried | -2/+16 |
| 2016-11-28 | rustc_typeck: don't record associated type resolutions. | Eduard-Mihai Burtescu | -2/+2 |
| 2016-11-28 | rustc: track fields in the HIR map. | Eduard Burtescu | -0/+1 |
| 2016-11-28 | rustc_privacy: visit Ty instead of HIR types in EmbargoVisitor. | Eduard-Mihai Burtescu | -1/+2 |
| 2016-11-28 | rustc: rework stability to be on-demand for type-directed lookup. | Eduard Burtescu | -297/+215 |
| 2016-11-28 | rustc: use Span's allow_internal_unstable instead of hir::BlockCheckMode. | Eduard Burtescu | -24/+1 |
| 2016-11-28 | rustc: embed path resolutions into the HIR instead of keeping DefMap. | Eduard-Mihai Burtescu | -142/+128 |
| 2016-11-28 | rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR. | Eduard-Mihai Burtescu | -21/+2 |
| 2016-11-28 | rustc: desugar UFCS as much as possible during HIR lowering. | Eduard Burtescu | -42/+78 |
| 2016-11-22 | Auto merge of #37681 - nrc:crate-metadata, r=@alexcrichton | bors | -7/+33 |
| 2016-11-23 | Rebasing and review changes | Nick Cameron | -0/+12 |
| 2016-11-21 | Implement the `loop_break_value` feature. | Geoffry Song | -10/+9 |
| 2016-11-22 | Change HirVec<P<T>> to HirVec<T> in Expr. | Nicholas Nethercote | -7/+6 |
| 2016-11-21 | Cleanup `InternedString`. | Jeffrey Seyfried | -5/+4 |
| 2016-11-21 | Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p... | Jeffrey Seyfried | -36/+34 |