| Age | Commit message (Expand) | Author | Lines |
| 2019-12-26 | Comments should start capitalized and end in a period | Oliver Scherer | -4/+4 |
| 2019-12-26 | Explain ParamEnv::reveal_all usage | Oliver Scherer | -0/+5 |
| 2019-12-26 | Immediately evaluate and validate constants when we want them as operands | Oliver Scherer | -3/+10 |
| 2019-12-26 | Interning even happens when validation of a constant fails | Oliver Scherer | -6/+12 |
| 2019-12-26 | Prevent an ICE on invalid transmutes | Oliver Scherer | -6/+4 |
| 2019-12-26 | Comment on a few odd things that we should look at | Oliver Scherer | -5/+4 |
| 2019-12-26 | Simplify `force_allocation_maybe_sized` | Oliver Scherer | -15/+4 |
| 2019-12-26 | Retire `to_ptr` which should already have no users but still kept getting new... | Oliver Scherer | -7/+12 |
| 2019-12-26 | Move `eval_const_fn_call` to the `const_eval` module | Oliver Scherer | -22/+1 |
| 2019-12-24 | x.py fmt after previous deignore | Mark Rousskov | -145/+126 |
| 2019-12-24 | Rollup merge of #67337 - oli-obk:no_mut_static_ref_from_const, r=RalfJung | Mazdak Farrokhzad | -11/+24 |
| 2019-12-23 | Tidy | Oliver Scherer | -1/+2 |
| 2019-12-23 | Rollup merge of #67546 - oli-obk:slice_pattern_ice, r=varkor | Mazdak Farrokhzad | -1/+2 |
| 2019-12-23 | Update src/librustc_mir/interpret/intern.rs | Oliver Scherer | -1/+1 |
| 2019-12-23 | Dynamically prevent constants from accessing statics | Oliver Scherer | -5/+8 |
| 2019-12-23 | Panic on mutable allocs in constants | Oliver Scherer | -6/+15 |
| 2019-12-23 | Update src/librustc_mir/interpret/place.rs | Oliver Scherer | -1/+1 |
| 2019-12-23 | Fix ICE in mir interpretation | Oliver Scherer | -1/+2 |
| 2019-12-22 | Format the world | Mark Rousskov | -1179/+1016 |
| 2019-12-22 | Rollup merge of #67299 - christianpoveda:try_immty_from_int, r=RalfJung | Mazdak Farrokhzad | -0/+9 |
| 2019-12-22 | Rollup merge of #66877 - skinny121:const-eval-entry-points, r=oli-obk | Mazdak Farrokhzad | -12/+5 |
| 2019-12-22 | Add error message if `Scalar::from_(u)int` fails | Christian Poveda | -2/+2 |
| 2019-12-22 | Add simpler entry points to const eval for common usages. | Ben Lewis | -12/+5 |
| 2019-12-21 | Change results to options | Christian Poveda | -4/+4 |
| 2019-12-21 | Rollup merge of #67467 - matthewjasper:test-slice-patterns, r=oli-obk | Mazdak Farrokhzad | -4/+25 |
| 2019-12-20 | Don't ICE in subslice pattern const-eval | Matthew Jasper | -4/+25 |
| 2019-12-20 | 1. ast::Mutability::{Mutable -> Mut, Immutable -> Not}. | Mazdak Farrokhzad | -28/+25 |
| 2019-12-18 | Add Rvalue::AddressOf to MIR | Matthew Jasper | -1/+1 |
| 2019-12-14 | add ImmTy::try_from_(u)int methods | Christian Poveda | -2/+11 |
| 2019-12-13 | Rollup merge of #67256 - RalfJung:reduce-allocs, r=oli-obk | Mazdak Farrokhzad | -29/+22 |
| 2019-12-12 | avoid more intermediate allocations in validation errors | Ralf Jung | -23/+16 |
| 2019-12-12 | validation: avoid some intermediate allocations | Ralf Jung | -6/+6 |
| 2019-12-12 | dont ICE in case of invalid drop fn | Ralf Jung | -1/+12 |
| 2019-12-11 | Auto merge of #66650 - matthewjasper:nonuniform-array-move, r=pnkfelix | bors | -4/+10 |
| 2019-12-09 | Make const index and subslice array projections more useful | Matthew Jasper | -4/+10 |
| 2019-12-08 | fix miri step debug printing | Ralf Jung | -1/+3 |
| 2019-12-08 | Rollup merge of #66991 - Nashenas88:body_cache_cleanup, r=eddyb | Mazdak Farrokhzad | -1/+1 |
| 2019-12-07 | Auto merge of #65881 - anp:implicit-caller-location, r=eddyb,oli-obk | bors | -0/+16 |
| 2019-12-07 | Auto merge of #66927 - RalfJung:engines-dont-panic, r=oli-obk | bors | -8/+6 |
| 2019-12-06 | Address review feedback. | Adam Perry | -13/+6 |
| 2019-12-06 | Rename to `then_some` and `then` | varkor | -4/+4 |
| 2019-12-06 | Use `to_option` in various places | varkor | -4/+4 |
| 2019-12-05 | Implement #[track_caller] in const. | Adam Perry | -0/+23 |
| 2019-12-05 | rustc: Apply clearer naming to BodyAndCache, fix Deref impl, remove unneeded ... | Paul Daniel Faria | -1/+1 |
| 2019-12-04 | Auto merge of #66866 - oli-obk:const_fn_memoization, r=RalfJung | bors | -15/+4 |
| 2019-12-04 | Update src/librustc_mir/interpret/terminator.rs | Oliver Scherer | -0/+1 |
| 2019-12-04 | Auto merge of #66275 - oli-obk:organize-intrinsics-promotion-checks, r=RalfJung | bors | -63/+66 |
| 2019-12-03 | Rollup merge of #66960 - wesleywiser:fix_66787_take2, r=oli-obk,RalfJung | Mazdak Farrokhzad | -10/+13 |
| 2019-12-03 | [const-prop] Fix ICE calculating enum discriminant | Wesley Wiser | -10/+13 |
| 2019-12-03 | Rollup merge of #66148 - oli-obk:it_must_be_a_sign, r=RalfJung | Mazdak Farrokhzad | -3/+40 |