| Age | Commit message (Expand) | Author | Lines |
| 2020-02-16 | Code review changes. | Ben Lewis | -2/+2 |
| 2020-02-15 | Monomorphize const type during codegen. | Ben Lewis | -1/+2 |
| 2020-02-15 | Change `const_field` and `const_caller_location` to return `ConstValue` inste... | Ben Lewis | -26/+25 |
| 2020-02-15 | Change const eval to return `ConstValue`, instead of `Const` as the type insi... | Ben Lewis | -2/+8 |
| 2020-02-13 | rename PanicInfo -> AssertKind | Ralf Jung | -3/+3 |
| 2020-02-13 | move PanicInfo to mir module | Ralf Jung | -1/+1 |
| 2020-02-09 | rustc_codegen_ssa: only "spill" SSA-like values to the stack for debuginfo. | Eduard-Mihai Burtescu | -32/+34 |
| 2020-02-09 | rustc_codegen_ssa: use `debug_introduce_local` on Operand call results. | Eduard-Mihai Burtescu | -0/+3 |
| 2020-02-09 | Auto merge of #68975 - Dylan-DPC:rollup-jzab8oh, r=Dylan-DPC | bors | -18/+3 |
| 2020-02-08 | rustc_codegen_ssa: remove unnecessary source_locations_enabled. | Eduard-Mihai Burtescu | -12/+3 |
| 2020-02-08 | rustc_codegen_llvm: remove InternalDebugLocation and simplify dbg_var_addr. | Eduard-Mihai Burtescu | -6/+0 |
| 2020-02-03 | rustc_codegen_ssa: don't treat inlined variables as debuginfo arguments. | Eduard-Mihai Burtescu | -4/+1 |
| 2020-02-03 | rustc_codegen_ssa: convert mir::VarDebugInfo into a custom PerLocalVarDebugInfo. | Eduard-Mihai Burtescu | -54/+133 |
| 2020-02-03 | rustc_codegen_ssa: split declare_local into create_dbg_var and dbg_var_addr. | Eduard-Mihai Burtescu | -4/+4 |
| 2020-01-28 | Place::ty_from takes local by value | Santiago Pastorino | -2/+2 |
| 2020-01-28 | Local field on PlaceRef and RootPlace is not a reference anymore | Santiago Pastorino | -9/+9 |
| 2020-01-28 | codegen_place and related functions can take PlaceRef by value | Santiago Pastorino | -19/+19 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -2/+0 |
| 2020-01-10 | Errors in promoteds may only cause lints not hard errors | Oliver Scherer | -8/+7 |
| 2020-01-10 | Add span_bug that notes that shuffle indices must be constant | Santiago Pastorino | -0/+2 |
| 2020-01-10 | Remove PlaceBase enum and make Place base field be local: Local | Santiago Pastorino | -66/+52 |
| 2020-01-10 | Remove Static from PlaceBase | Santiago Pastorino | -60/+40 |
| 2020-01-10 | Use if let instead of match with one meaningful arm | Santiago Pastorino | -19/+9 |
| 2020-01-10 | Remove StaticKind | Santiago Pastorino | -6/+1 |
| 2020-01-10 | Remove StaticKind::Promoted | Santiago Pastorino | -64/+3 |
| 2020-01-10 | Promote `Ref`s to constants instead of static | Santiago Pastorino | -3/+6 |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -4/+7 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -11/+10 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -3/+3 |
| 2019-12-28 | Auto merge of #67598 - jumbatm:issue67557_simd_shuffle, r=oli-obk | bors | -3/+6 |
| 2019-12-25 | Run RustFmt | jumbatm | -1/+4 |
| 2019-12-25 | Pass new instance instead of self.instance to simd_shuffle_indices. | jumbatm | -3/+3 |
| 2019-12-24 | x.py fmt after previous deignore | Mark Rousskov | -124/+85 |
| 2019-12-22 | Format the world | Mark Rousskov | -937/+898 |
| 2019-12-22 | Rollup merge of #66877 - skinny121:const-eval-entry-points, r=oli-obk | Mazdak Farrokhzad | -23/+10 |
| 2019-12-22 | Add simpler entry points to const eval for common usages. | Ben Lewis | -23/+10 |
| 2019-12-20 | Rollup merge of #64588 - matthewjasper:mir-address-of, r=oli-obk | Mazdak Farrokhzad | -21/+41 |
| 2019-12-18 | Add Rvalue::AddressOf to MIR | Matthew Jasper | -21/+41 |
| 2019-12-15 | Remove now-redundant range check on u128 -> f32 casts | Robin Kruppe | -36/+7 |
| 2019-12-11 | Auto merge of #66650 - matthewjasper:nonuniform-array-move, r=pnkfelix | bors | -1/+2 |
| 2019-12-11 | Rollup merge of #67134 - oli-obk:const_prop_zst, r=wesleywiser | Yuki Okushi | -1/+8 |
| 2019-12-09 | Make const index and subslice array projections more useful | Matthew Jasper | -1/+2 |
| 2019-12-08 | Rollup merge of #66991 - Nashenas88:body_cache_cleanup, r=eddyb | Mazdak Farrokhzad | -3/+3 |
| 2019-12-08 | Rollup merge of #66325 - BartMassey:master, r=joshtriplett | Mazdak Farrokhzad | -1/+1 |
| 2019-12-08 | Ensure that we get a hard error on generic ZST constants if their body causes... | Oliver Scherer | -1/+8 |
| 2019-12-07 | Auto merge of #65881 - anp:implicit-caller-location, r=eddyb,oli-obk | bors | -12/+50 |
| 2019-12-06 | Address review feedback. | Adam Perry | -4/+4 |
| 2019-12-06 | Caller location is propagated via immediates rather than memory. | Adam Perry | -8/+13 |