| Age | Commit message (Expand) | Author | Lines |
| 2020-03-06 | fix various typos | Matthias Krüger | -1/+1 |
| 2020-03-04 | cover some more nearby cases | Ralf Jung | -3/+2 |
| 2020-03-03 | Rollup merge of #69619 - matthiaskrgr:misc, r=eddyb | Yuki Okushi | -4/+2 |
| 2020-03-01 | Fix use of `has_infer_types` | Matthew Jasper | -2/+2 |
| 2020-03-01 | use for (idx, item) in iter.enumerate() instead of manually counting loop i... | Matthias Krüger | -4/+2 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -1/+1 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -1/+1 |
| 2020-02-29 | Auto merge of #69263 - anyska:blacklist-powerpc-zst, r=nagisa | bors | -7/+15 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -1/+1 |
| 2020-02-24 | Also blacklist powerpc-unknown-linux-musl. | Ana-Maria | -9/+12 |
| 2020-02-18 | Blacklist powerpc-unknown-linux-gnu as having non-ignored GNU C ZSTs. | Ana-Maria | -3/+8 |
| 2020-02-10 | Add `#[repr(no_niche)]`. | Felix S. Klock II | -7/+18 |
| 2020-02-08 | Auto merge of #68452 - msizanoen1:riscv-abi, r=nagisa,eddyb | bors | -0/+1 |
| 2020-02-04 | Implement proper C ABI lowering for RISC-V | msizanoen1 | -0/+1 |
| 2020-02-02 | Use real resume type as second argument | Jonas Schievink | -1/+2 |
| 2020-02-02 | Add a resume type parameter to `Generator` | Jonas Schievink | -2/+2 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-08 | Display more informative ICE | Yuki Okushi | -5/+9 |
| 2020-01-06 | Auto merge of #67886 - Centril:rustc_hir_canon_imports, r=nagisa | bors | -1/+1 |
| 2020-01-05 | Rename Instance.ty to Instance.monomorphic_ty | Aaron Hill | -1/+1 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -1/+1 |
| 2019-12-22 | Format the world | Mark Rousskov | -573/+519 |
| 2019-12-20 | 1. ast::Mutability::{Mutable -> Mut, Immutable -> Not}. | Mazdak Farrokhzad | -2/+2 |
| 2019-12-08 | Rollup merge of #66325 - BartMassey:master, r=joshtriplett | Mazdak Farrokhzad | -1/+1 |
| 2019-12-05 | Add caller_location paramter to FnAbi::new_internal. | Adam Perry | -2/+11 |
| 2019-12-03 | rustc: add docs to FnAbi::{of_fn_ptr,of_instance} and InstanceDef::Virtual. | Eduard-Mihai Burtescu | -0/+11 |
| 2019-12-03 | rustc: move Instance::fn_sig to ty::layout and privatize it. | Eduard-Mihai Burtescu | -1/+71 |
| 2019-12-03 | rustc_target: add abi::call::Conv::Rust distinct from Conv::C. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-12-03 | rustc: take a PolyFnSig instead of an FnSig in FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -7/+8 |
| 2019-12-03 | rustc: rename FnAbi::new to FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-12-03 | rustc: compute FnAbi's for virtual calls through FnAbi::of_instance. | Eduard-Mihai Burtescu | -12/+8 |
| 2019-11-25 | review feedback: comments and spacing | Ralf Jung | -2/+3 |
| 2019-11-22 | remove the 'dereferenceable' attribute from Box | Ralf Jung | -1/+7 |
| 2019-11-22 | Auto merge of #66460 - cjgillot:hashstable_generic, r=Zoxc | bors | -152/+0 |
| 2019-11-21 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -2/+2 |
| 2019-11-17 | Derive HashStable in librustc_target. | Camille GILLOT | -152/+0 |
| 2019-11-16 | make simd_size return a u64 | Ralf Jung | -1/+1 |
| 2019-11-15 | Cleaned up unused labels | Bart Massey | -1/+1 |
| 2019-11-12 | Rollup merge of #66276 - Mark-Simulacrum:sess-code-stats, r=nikomatsakis | Yuki Okushi | -7/+7 |
| 2019-11-10 | Move lock into CodeStats | Mark Rousskov | -7/+7 |
| 2019-11-10 | Merge hir::Mutability into ast::Mutability. | Camille GILLOT | -2/+2 |
| 2019-11-07 | rustc_target: inline abi::FloatTy into abi::Primitive. | Eduard-Mihai Burtescu | -8/+9 |
| 2019-11-07 | syntax: use distinct FloatTy from rustc_target. | Mazdak Farrokhzad | -1/+4 |
| 2019-11-03 | rustc: rename {Fn,Arg}TypeExt to {Fn,Arg}AbiExt. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-11-03 | rustc_target: rename {Fn,Arg}Type to {Fn,Arg}Abi. | Eduard-Mihai Burtescu | -12/+12 |
| 2019-10-25 | Add new EFIAPI ABI | roblabla | -0/+1 |
| 2019-10-14 | Auto merge of #64987 - oli-obk:code_reuse_prevents_bugs, r=eddyb | bors | -3/+7 |
| 2019-10-09 | Refactor a nested `if` to a `match` | Oliver Scherer | -11/+7 |
| 2019-10-04 | replace GeneratorSubsts inside related types | csmoe | -2/+2 |