| Age | Commit message (Expand) | Author | Lines |
| 2019-11-21 | reduce size of hir::ExprKind | Mazdak Farrokhzad | -2/+2 |
| 2019-11-03 | rustc_codegen_ssa: rename ArgTypeMethods to ArgAbiMethods. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-11-03 | rustc_target: rename {Fn,Arg}Type to {Fn,Arg}Abi. | Eduard-Mihai Burtescu | -10/+10 |
| 2019-10-31 | rustc_codegen_ssa: hide address ops from the declare_local interface. | Eduard-Mihai Burtescu | -3/+6 |
| 2019-10-31 | rustc_codegen_ssa: move debuginfo scopes into FunctionDebugContext. | Eduard-Mihai Burtescu | -12/+4 |
| 2019-10-31 | rustc_codegen_ssa: change set_var_name back to taking a &str. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-10-31 | rustc_codegen_ssa: move debuginfo-related things to a new mir::debuginfo module. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-10-28 | Rollup merge of #65792 - Centril:split-syntax-2, r=petrochenkov | Mazdak Farrokhzad | -1/+1 |
| 2019-10-27 | Always use consteval to codegen caller_location. | Adam Perry | -2/+0 |
| 2019-10-27 | Panicking infra uses &core::panic::Location. | Adam Perry | -9/+0 |
| 2019-10-27 | Implement core::intrinsics::caller_location. | Adam Perry | -0/+4 |
| 2019-10-27 | rustc, rustc_passes: don't depend on syntax_expand. | Mazdak Farrokhzad | -1/+1 |
| 2019-10-21 | Use `Symbol` for codegen unit names. | Nicholas Nethercote | -2/+2 |
| 2019-10-16 | move syntax::ext to new crate syntax_expand | Mazdak Farrokhzad | -1/+1 |
| 2019-10-13 | Remove MiscMethods::instances | bjorn3 | -2/+2 |
| 2019-10-13 | s/FuncId/Function | bjorn3 | -9/+9 |
| 2019-10-13 | Remove is_const_integral method from ConstMethods | bjorn3 | -3/+1 |
| 2019-10-13 | Introduce FuncId backend type | bjorn3 | -7/+10 |
| 2019-10-10 | Auto merge of #59546 - sfanxiang:interminable-ub, r=nagisa | bors | -0/+1 |
| 2019-09-29 | remove indexed_vec re-export from rustc_data_structures | csmoe | -1/+1 |
| 2019-09-28 | Add llvm.sideeffect to potential infinite loops and recursions | Xiang Fan | -0/+1 |
| 2019-09-26 | Rollup merge of #64772 - Mark-Simulacrum:no-tyctxt-tx, r=eddyb | Mazdak Farrokhzad | -1/+7 |
| 2019-09-25 | Remove tx_to_llvm_workers from TyCtxt | Mark Rousskov | -1/+7 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -1/+1 |
| 2019-09-17 | Get rid of special const intrinsic query in favour of `const_eval` | Oliver Scherer | -2/+2 |
| 2019-09-12 | codegen: be more explicit about setting giving names to allocas. | Eduard-Mihai Burtescu | -3/+2 |
| 2019-09-06 | rustc_codegen_llvm: give names to non-alloca variable values. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-09-04 | Remove `LocalInternedString` uses from `librustc_codegen_llvm`. | Nicholas Nethercote | -3/+3 |
| 2019-08-17 | Remove SyntaxContext from {ast, hir}::{GlobalAsm, InlineAsm} | Matthew Jasper | -0/+2 |
| 2019-08-02 | CTFE: simplify Value type by not checking for alignment | Ralf Jung | -1/+0 |
| 2019-07-24 | Merge `rustc_allocator` into `libsyntax_ext` | Vadim Petrochenkov | -1/+1 |
| 2019-07-12 | Replace `struct_tail` and `struct_lockstep_tails` with variants handling norm... | Felix S. Klock II | -2/+3 |
| 2019-07-09 | Fix float add/mul reduction codegen | Nikita Popov | -0/+1 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -2/+2 |
| 2019-06-19 | Weave the alignment through `ByRef` | Oliver Scherer | -0/+1 |
| 2019-06-18 | Auto merge of #59625 - immunant:copy_variadics_typealias, r=eddyb | bors | -2/+2 |
| 2019-06-18 | rustc: remove unused lifetimes. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-17 | Expose `VaListImpl` as the Rust equivalent of `__va_list_tag` and implement C... | Andrei Homescu | -2/+2 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -6/+6 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -6/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -4/+4 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-11 | rustc_codegen_*: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -6/+6 |
| 2019-06-03 | Auto merge of #59148 - lcnr:unchecked_maths, r=eddyb | bors | -0/+6 |
| 2019-06-03 | add support for unchecked math | lcnr/Bastian Kauschke | -0/+6 |
| 2019-06-02 | remove reexports of mir::mono::{MonoItem,CodegenUnit} | Mark Mansi | -1/+1 |
| 2019-06-02 | remove reexport of rustc::ty::Instance | Mark Mansi | -4/+2 |
| 2019-05-29 | Rollup merge of #61297 - eddyb:forsaken-stats, r=nagisa | Mazdak Farrokhzad | -5/+1 |