| Age | Commit message (Expand) | Author | Lines |
| 2017-10-03 | Auto merge of #44966 - zackmdavis:no_mangle_no_snake, r=aturon | bors | -1/+6 |
| 2017-10-01 | correct unused-parens lint suggestion to strip exact pair | Zack M. Davis | -1/+25 |
| 2017-10-01 | make non_snake_case lint allow extern no-mangle functions | Zack M. Davis | -1/+6 |
| 2017-09-30 | code suggestions for unused-mut, while-true lints; UI test | Zack M. Davis | -6/+14 |
| 2017-09-30 | code suggestion for unused-parentheses lint | Zack M. Davis | -3/+11 |
| 2017-09-30 | code suggestion for deprecated-attribute lint | Zack M. Davis | -4/+5 |
| 2017-09-22 | add comparison operators to must-use lint (under `fn_must_use` feature) | Zack M. Davis | -1/+17 |
| 2017-09-21 | Refactor lifetime name into an enum | Taylor Cramer | -1/+1 |
| 2017-09-15 | Get `allow(unused_mut)` to work on `let` bindings | Oliver Schneider | -12/+4 |
| 2017-09-12 | Auto merge of #44275 - eddyb:deferred-ctfe, r=nikomatsakis | bors | -10/+10 |
| 2017-09-11 | Auto merge of #44435 - alexcrichton:in-scope, r=michaelwoerister | bors | -2/+2 |
| 2017-09-11 | rustc: Remove HirId from queries | Alex Crichton | -2/+2 |
| 2017-09-11 | rustc: replace usize with u64 and ConstUsize. | Eduard-Mihai Burtescu | -8/+8 |
| 2017-09-11 | rustc: introduce ty::Const { ConstVal, Ty }. | Eduard-Mihai Burtescu | -1/+1 |
| 2017-09-11 | rustc: intern ConstVal's in TyCtxt. | Eduard-Mihai Burtescu | -2/+2 |
| 2017-09-08 | Use NodeId/HirId instead of DefId for local variables. | Eduard-Mihai Burtescu | -1/+4 |
| 2017-09-08 | Auto merge of #44142 - alexcrichton:dllimport-query, r=nikomatsakis | bors | -3/+4 |
| 2017-09-06 | pprust: fix parenthesization of exprs | Stuart Pernsteiner | -35/+3 |
| 2017-09-05 | rustc: Migrate lang items to a query | Alex Crichton | -1/+1 |
| 2017-09-05 | rustc: Flag some CrateStore methods as "untracked" | Alex Crichton | -1/+2 |
| 2017-09-05 | rustc: Move {plugin,derive}_registrar_fn to queries | Alex Crichton | -1/+1 |
| 2017-09-05 | Auto merge of #44248 - oli-obk:spans, r=jseyfried | bors | -4/+6 |
| 2017-09-04 | Produce expansion info for more builtin macros | Oliver Schneider | -4/+6 |
| 2017-09-03 | Auto merge of #44261 - alexcrichton:u128-ffi-unsafe, r=eddyb | bors | -0/+12 |
| 2017-09-03 | Auto merge of #44195 - alexcrichton:remove-used-unsafe, r=nikomatsakis | bors | -55/+0 |
| 2017-09-01 | rustc: Flag {i,u}128 as unsafe for FFI | Alex Crichton | -0/+12 |
| 2017-09-01 | rustc: use hir::ItemLocalId instead of ast::NodeId in CodeExtent. | Eduard-Mihai Burtescu | -1/+1 |
| 2017-09-01 | rustc: use hir::ItemLocalId instead of ast::NodeId in CFG. | Eduard-Mihai Burtescu | -12/+14 |
| 2017-08-30 | rustc: Remove the `used_unsafe` field on TyCtxt | Alex Crichton | -55/+0 |
| 2017-08-28 | Merge branch 'master' of https://github.com/rust-lang/rust into gen | John Kåre Alsaker | -18/+19 |
| 2017-08-26 | Rollup merge of #43776 - zackmdavis:feature_gate_fn_must_use, r=alexcrichton | Corey Farwell | -15/+19 |
| 2017-08-25 | *: remove crate_{name,type} attributes | Tamir Duberstein | -3/+0 |
| 2017-08-22 | hard feature-gate for #[must_use] on functions | Zack M. Davis | -15/+19 |
| 2017-08-21 | Merge remote-tracking branch 'origin/master' into gen | Alex Crichton | -4/+4 |
| 2017-08-19 | rustc: Remove some dead code | Vadim Petrochenkov | -4/+4 |
| 2017-08-14 | Merge remote-tracking branch 'origin/master' into gen | Alex Crichton | -23/+42 |
| 2017-08-14 | Auto merge of #43740 - michaelwoerister:local-id-in-typecktables, r=arielb1 | bors | -14/+16 |
| 2017-08-14 | Fix some merge fallout. | Michael Woerister | -2/+2 |
| 2017-08-13 | Auto merge of #43813 - pengowen123:unused_result, r=estebank | bors | -1/+9 |
| 2017-08-12 | syntax: #[allow_internal_unsafe] bypasses the unsafe_code lint in macros. | Eduard-Mihai Burtescu | -8/+17 |
| 2017-08-11 | Don't trigger unused_result on functions returning empty enums | Owen Sanchez | -1/+7 |
| 2017-08-11 | Fix unused_result lint triggering when a function returns `()` or `!` | Owen Sanchez | -0/+2 |
| 2017-08-11 | Encapsulate sub-table access in TypeckTables and validate keys on each access. | Michael Woerister | -3/+2 |
| 2017-08-11 | Use ItemLocalId as key for TypeckTables::pat_binding_modes. | Michael Woerister | -1/+3 |
| 2017-08-11 | Use ItemLocalId as key for node_types, node_substs, and adjustments in Typeck... | Michael Woerister | -9/+9 |
| 2017-08-11 | Make TypeckTables::type_dependent_defs use ItemLocalId instead of NodeId. | Michael Woerister | -4/+5 |
| 2017-08-10 | Merge remote-tracking branch 'origin/master' into gen | Alex Crichton | -20/+32 |
| 2017-08-09 | Merge remote-tracking branch 'origin/master' into gen | Alex Crichton | -2/+47 |
| 2017-08-09 | rustc: Rearchitect lints to be emitted more eagerly | Alex Crichton | -9/+6 |
| 2017-08-09 | Auto merge of #43728 - zackmdavis:fnused, r=eddyb | bors | -9/+25 |