| Age | Commit message (Expand) | Author | Lines |
| 2020-02-27 | lit_to_const: gracefully bubble up type errors. | Mazdak Farrokhzad | -0/+4 |
| 2020-01-24 | Render const pointers in MIR more compactly | Oliver Scherer | -3/+9 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -2/+0 |
| 2020-01-16 | let rustfmt undo most of my edits :( | Ralf Jung | -2/+1 |
| 2020-01-16 | fix rustfmt fallout | Ralf Jung | -4/+5 |
| 2020-01-14 | Code review changes and fix rustdoc test. | Ben Lewis | -5/+5 |
| 2020-01-14 | perf: eagerly convert literals to consts, this avoids creating loads on uneva... | Ben Lewis | -1/+20 |
| 2020-01-12 | Rollup merge of #68045 - Centril:liberate-lints, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | Auto merge of #67000 - spastorino:remove-promoted-from-place, r=oli-obk | bors | -2/+7 |
| 2020-01-11 | lints: promote levels.rs to lint.rs & extract passes.rs | Mazdak Farrokhzad | -1/+1 |
| 2020-01-10 | Promoteds also need param envs. | Oliver Scherer | -2/+2 |
| 2020-01-10 | Promote `Ref`s to constants instead of static | Santiago Pastorino | -1/+6 |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -1/+1 |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -1/+1 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -3/+3 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -2/+2 |
| 2019-12-30 | Auto merge of #67658 - spastorino:do-not-copy-zsts, r=oli-obk | bors | -0/+8 |
| 2019-12-30 | Auto merge of #67631 - oli-obk:polymorphic_promotion, r=wesleywiser | bors | -1/+1 |
| 2019-12-28 | Avoid copying some undef memory in MIR | Santiago Pastorino | -0/+8 |
| 2019-12-28 | Rollup merge of #67604 - christianpoveda:scalar_to_(u|i)64, r=RalfJung | Oliver Scherer | -21/+35 |
| 2019-12-27 | Fix `Instance::resolve()` incorrectly returning specialized instances | Wesley Wiser | -1/+1 |
| 2019-12-26 | Early abort instead of building up zero sized values | Oliver Scherer | -4/+0 |
| 2019-12-26 | Prevent an ICE on invalid transmutes | Oliver Scherer | -0/+6 |
| 2019-12-26 | Retire `to_ptr` which should already have no users but still kept getting new... | Oliver Scherer | -7/+2 |
| 2019-12-26 | Don't ICE on the use of integer addresses for ZST constants in pattern matching | Oliver Scherer | -0/+4 |
| 2019-12-25 | rewrite scalar to integer methods | Christian Poveda | -28/+29 |
| 2019-12-25 | Add Scalar::to_(u|i)16 methods | Christian Poveda | -0/+13 |
| 2019-12-22 | Format the world | Mark Rousskov | -462/+407 |
| 2019-12-22 | Rollup merge of #67299 - christianpoveda:try_immty_from_int, r=RalfJung | Mazdak Farrokhzad | -11/+27 |
| 2019-12-22 | Rollup merge of #66877 - skinny121:const-eval-entry-points, r=oli-obk | Mazdak Farrokhzad | -1/+92 |
| 2019-12-22 | Add error message if `Scalar::from_(u)int` fails | Christian Poveda | -2/+8 |
| 2019-12-22 | Add simpler entry points to const eval for common usages. | Ben Lewis | -1/+92 |
| 2019-12-21 | Change results to options | Christian Poveda | -6/+6 |
| 2019-12-20 | 1. ast::Mutability::{Mutable -> Mut, Immutable -> Not}. | Mazdak Farrokhzad | -2/+2 |
| 2019-12-14 | add Scalar::try_from_(u)int methods | Christian Poveda | -12/+22 |
| 2019-12-07 | Auto merge of #66927 - RalfJung:engines-dont-panic, r=oli-obk | bors | -5/+21 |
| 2019-12-03 | Rollup merge of #66951 - RalfJung:miri-machine-stop, r=oli-obk | Mazdak Farrokhzad | -0/+7 |
| 2019-12-02 | miri: add throw_machine_stop macro | Ralf Jung | -0/+7 |
| 2019-12-02 | Add From instances for Pointer -> ScalarMaybeUndef and Pointer -> Immediate | Ralf Jung | -0/+7 |
| 2019-12-01 | Miri core engine: use throw_ub instead of throw_panic | Ralf Jung | -5/+21 |
| 2019-12-01 | add reusable MachineStop variant to Miri engine error enum | Ralf Jung | -16/+12 |
| 2019-12-01 | Rollup merge of #66832 - RalfJung:const-prop-no-alloc, r=oli-obk | Mazdak Farrokhzad | -7/+13 |
| 2019-11-29 | Auto merge of #66321 - ninjasource:async-fn-resume-after-completion, r=oli-obk | bors | -5/+9 |
| 2019-11-28 | const_prop: detect and avoid catching Miri errors that require allocation | Ralf Jung | -7/+13 |
| 2019-11-28 | Removed FIXME comment | David Haig | -2/+0 |
| 2019-11-28 | Remove duplication using single variant for error | David Haig | -11/+11 |
| 2019-11-28 | Squash | David Haig | -0/+6 |
| 2019-11-28 | Auto merge of #66294 - davidhewitt:const_fn_memoization, r=oli-obk | bors | -1/+4 |
| 2019-11-27 | Rollup merge of #66798 - bwignall:typo, r=varkor | Tyler Mandry | -1/+1 |