| Age | Commit message (Expand) | Author | Lines |
| 2019-11-21 | Fix rebase | Matthew Jasper | -3/+3 |
| 2019-11-21 | Readjust const qualification to detect statics again | Santiago Pastorino | -1/+19 |
| 2019-11-21 | Introduce MIR optimizations for simplifying `x?` on `Result`s. | Mazdak Farrokhzad | -7/+7 |
| 2019-11-21 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -7/+8 |
| 2019-11-21 | reduce size of hir::ExprKind | Mazdak Farrokhzad | -2/+2 |
| 2019-11-19 | More HashStable. | Camille GILLOT | -22/+2 |
| 2019-11-19 | More HashStable. | Camille GILLOT | -64/+11 |
| 2019-11-19 | Auto merge of #66454 - cjgillot:lift, r=Zoxc | bors | -1/+2 |
| 2019-11-18 | Retire BraceStructLiftImpl. | Camille GILLOT | -1/+2 |
| 2019-11-17 | Auto merge of #66385 - ecstatic-morse:check-only-pass2, r=eddyb | bors | -0/+11 |
| 2019-11-17 | Auto merge of #66384 - cjgillot:typefoldable, r=Zoxc | bors | -109/+10 |
| 2019-11-15 | Fix nits from review | Dylan MacKenzie | -1/+5 |
| 2019-11-15 | Use a bespoke type for the result of `mir_const_qualif` | Dylan MacKenzie | -0/+7 |
| 2019-11-15 | Rollup merge of #66410 - RalfJung:miri-machine-max, r=oli-obk | Yuki Okushi | -0/+13 |
| 2019-11-14 | Update to use new librustc_error_codes library | Guillaume Gomez | -0/+2 |
| 2019-11-14 | miri: helper methods for max values of machine's usize/isize | Ralf Jung | -0/+13 |
| 2019-11-14 | Auto merge of #66233 - cjgillot:constkind, r=oli-obk | bors | -40/+7 |
| 2019-11-13 | Use TypeFoldable derive macro. | Camille GILLOT | -109/+10 |
| 2019-11-12 | Remove cruft. | Camille GILLOT | -10/+0 |
| 2019-11-12 | Create intermediate enum ty::ConstKind. | Camille GILLOT | -40/+17 |
| 2019-11-11 | Fix soundness issue with index bounds checks | Matthew Jasper | -3/+11 |
| 2019-11-10 | Merge hir::GeneratorMovability into ast::Movability. | Camille GILLOT | -1/+1 |
| 2019-11-10 | Merge hir::Mutability into ast::Mutability. | Camille GILLOT | -6/+6 |
| 2019-11-08 | Rollup merge of #66154 - RalfJung:to_usize, r=oli-obk | Mazdak Farrokhzad | -6/+6 |
| 2019-11-08 | miri: Rename to_{u,i}size to to_machine_{u,i}size | Ralf Jung | -6/+6 |
| 2019-11-06 | safe_extern_static -> error | Mazdak Farrokhzad | -1/+0 |
| 2019-11-02 | Simplify various `Symbol` use points. | Nicholas Nethercote | -1/+1 |
| 2019-10-25 | Derive Eq and Hash for SourceInfo again | bjorn3 | -1/+3 |
| 2019-10-25 | Rollup merge of #65315 - spastorino:intern-place-projection, r=oli-obk | Mazdak Farrokhzad | -61/+46 |
| 2019-10-23 | Rollup merge of #65704 - RalfJung:exact-size, r=oli-obk | Mazdak Farrokhzad | -2/+5 |
| 2019-10-23 | Rollup merge of #65657 - nnethercote:rm-InternedString-properly, r=eddyb | Mazdak Farrokhzad | -14/+14 |
| 2019-10-22 | relax ExactSizeIterator bound on write_bytes: too many iterators don't have t... | Ralf Jung | -2/+5 |
| 2019-10-22 | Move Place::elem methods and friends to TyCtxt | Santiago Pastorino | -45/+0 |
| 2019-10-22 | Intern place projection | Santiago Pastorino | -32/+54 |
| 2019-10-22 | Pattern match over PlaceRef rather than Place | Santiago Pastorino | -8/+8 |
| 2019-10-21 | Move as_local impl to from Place to PlaceRef | Santiago Pastorino | -4/+10 |
| 2019-10-21 | PlaceElem<'tcx> should be Copy | Santiago Pastorino | -0/+2 |
| 2019-10-21 | Rollup merge of #65660 - varkor:canonical-const-to-bound-const, r=eddyb | Mazdak Farrokhzad | -1/+6 |
| 2019-10-21 | Rollup merge of #65647 - nnethercote:rm-unnecessary-traits, r=Centril | Mazdak Farrokhzad | -16/+16 |
| 2019-10-21 | Rename `ConstValue::Infer(InferConst::Canonical(..))` to `ConstValue::Bound(..)` | varkor | -1/+6 |
| 2019-10-21 | Remove many unnecessary trait derivations. | Nicholas Nethercote | -16/+16 |
| 2019-10-21 | remove write_repeat; it is subsumed by the new write_bytes | Ralf Jung | -19/+0 |
| 2019-10-21 | points the user away from the Allocation type and towards the Memory type | Ralf Jung | -0/+12 |
| 2019-10-21 | Use `Symbol` for codegen unit names. | Nicholas Nethercote | -10/+10 |
| 2019-10-21 | Change `SymbolName::name` from `InternedString` to `Symbol`. | Nicholas Nethercote | -2/+2 |
| 2019-10-21 | Convert `InternedString`s to `Symbols` in `UnsafetyViolation`. | Nicholas Nethercote | -3/+3 |
| 2019-10-20 | also check the iterator is not too long | Ralf Jung | -0/+1 |
| 2019-10-20 | miri add write_bytes method to Memory doing bounds-checks and supporting iter... | Ralf Jung | -2/+7 |
| 2019-10-19 | Auto merge of #64890 - wesleywiser:const_prop_rvalue, r=oli-obk | bors | -3/+4 |
| 2019-10-18 | Don't ICE when evaluating writes to uninhabited enum variants | Wesley Wiser | -3/+4 |