| Age | Commit message (Expand) | Author | Lines |
| 2017-10-02 | incr.comp.: Re-execute queries during red/green marking in order to find out ... | Michael Woerister | -8/+7 |
| 2017-09-29 | stop using monomorphize::resolve() | Douglas Campos | -1/+4 |
| 2017-09-29 | take ParamEnv into account when resolving | Douglas Campos | -2/+5 |
| 2017-09-29 | make it not to be a method | Douglas Campos | -1/+1 |
| 2017-09-29 | always use resolve | Douglas Campos | -19/+4 |
| 2017-09-29 | re-enable mir inlining across trait methods | Douglas Campos | -8/+23 |
| 2017-09-25 | Move src/librustc_mir/transform/nll.rs to a subdirectory | Simon Sapin | -0/+0 |
| 2017-09-24 | remove test code accidentally checked in | Ariel Ben-Yehuda | -10/+0 |
| 2017-09-24 | move unsafety checking to MIR | Ariel Ben-Yehuda | -0/+400 |
| 2017-09-24 | add lint levels to VisibilityScope | Ariel Ben-Yehuda | -4/+7 |
| 2017-09-21 | Make the fallback of generator resumption be unreachable instead of using return | John Kåre Alsaker | -10/+11 |
| 2017-09-17 | Remove rustc_bitflags; use the bitflags crate | Tamir Duberstein | -10/+10 |
| 2017-09-16 | Rollup merge of #44560 - qmx:import-TyCtxt, r=eddyb | Alex Crichton | -1/+1 |
| 2017-09-16 | Auto merge of #43017 - durka:stabilize-const-invocation, r=eddyb | bors | -22/+38 |
| 2017-09-14 | bring TyCtxt into scope | Douglas Campos | -1/+1 |
| 2017-09-13 | Fix a bug where StorageIgnored had an incorrect buffer length | John Kåre Alsaker | -2/+2 |
| 2017-09-13 | Fix nits and refactor creation of StorageLive blocks | John Kåre Alsaker | -75/+52 |
| 2017-09-13 | Make sure we aren't using dead locals | John Kåre Alsaker | -5/+6 |
| 2017-09-13 | Analyse storage liveness and preserve it during generator transformation | John Kåre Alsaker | -169/+222 |
| 2017-09-13 | honor #[rustc_const_unstable] attributes | Alex Burka | -22/+38 |
| 2017-09-13 | Auto merge of #44456 - eddyb:stable-drop-const, r=nikomatsakis | bors | -132/+16 |
| 2017-09-12 | Auto merge of #44275 - eddyb:deferred-ctfe, r=nikomatsakis | bors | -38/+44 |
| 2017-09-11 | rustc: use ConstVal::Unevaluated instead of mir::Literal::Item. | Eduard-Mihai Burtescu | -3/+6 |
| 2017-09-11 | rustc: use ty::Const for the length of TyArray. | Eduard-Mihai Burtescu | -2/+3 |
| 2017-09-11 | rustc: replace usize with u64 and ConstUsize. | Eduard-Mihai Burtescu | -3/+4 |
| 2017-09-11 | rustc: introduce ty::Const { ConstVal, Ty }. | Eduard-Mihai Burtescu | -32/+31 |
| 2017-09-11 | rustc: intern ConstVal's in TyCtxt. | Eduard-Mihai Burtescu | -6/+8 |
| 2017-09-11 | Auto merge of #44383 - qmx:gh/40473/no-inline-trait-method, r=nikomatsakis | bors | -6/+8 |
| 2017-09-10 | Use rvalue promotion to 'static instead of static items. | Eduard-Mihai Burtescu | -1/+0 |
| 2017-09-09 | Stabilize drop_types_in_const. | Eduard-Mihai Burtescu | -132/+16 |
| 2017-09-09 | Auto merge of #44212 - eddyb:drop-const, r=nikomatsakis | bors | -5/+7 |
| 2017-09-08 | simplify | Douglas Campos | -9/+1 |
| 2017-09-08 | Auto merge of #44142 - alexcrichton:dllimport-query, r=nikomatsakis | bors | -6/+6 |
| 2017-09-07 | Auto merge of #44249 - pnkfelix:debugflag-emit-end-regions, r=arielb1 | bors | -1/+3 |
| 2017-09-06 | ugly, but works! | Douglas Campos | -6/+16 |
| 2017-09-06 | Reintroduce the early returns | Oliver Schneider | -4/+9 |
| 2017-09-06 | Fix a bug in the inliner | Oliver Schneider | -1/+2 |
| 2017-09-05 | rustc: Store InternedString in `DefPathData` | Alex Crichton | -1/+1 |
| 2017-09-05 | rustc: Migrate lang items to a query | Alex Crichton | -5/+5 |
| 2017-09-05 | Emit `EndRegion` statements when given `-Z mir-emit-validate=N` (for N > 0). | Felix S. Klock II | -1/+1 |
| 2017-09-05 | Skip EndRegion emission by default. Use `-Z emit-end-regions` to reenable it. | Felix S. Klock II | -1/+3 |
| 2017-09-04 | rustc_mir: use Local instead of Lvalue in Storage{Live,Dead}. | Eduard-Mihai Burtescu | -23/+9 |
| 2017-09-03 | rustc_mir: use Local in ProjectionElem::Index. | Eduard-Mihai Burtescu | -4/+3 |
| 2017-09-03 | rustc_mir: implement visit_local instead/along visit_lvalue where possible. | Eduard-Mihai Burtescu | -119/+120 |
| 2017-09-03 | Auto merge of #44253 - eddyb:nice-scope, r=nikomatsakis | bors | -7/+7 |
| 2017-09-02 | Allow Drop types in const's too, with #![feature(drop_types_in_const)]. | Eduard-Mihai Burtescu | -5/+7 |
| 2017-09-02 | rustc_mir: actually "promote" constants' MIR to 'static by removing StorageDe... | Eduard-Mihai Burtescu | -25/+80 |
| 2017-09-01 | rustc: rename CodeExtent to Scope and RegionMaps to ScopeTree. | Eduard-Mihai Burtescu | -7/+7 |
| 2017-08-30 | Auto merge of #43932 - eddyb:const-scoping, r=nikomatsakis | bors | -8/+63 |
| 2017-08-28 | rustc: treat impl associated consts like const items for constness. | Eduard-Mihai Burtescu | -3/+8 |