| Age | Commit message (Expand) | Author | Lines |
| 2020-04-29 | Remove Session::no_landing_pads() | Amanieu d'Antras | -1/+2 |
| 2020-04-14 | Update the minimum external LLVM to 8 | Josh Stone | -42/+9 |
| 2020-04-05 | Stop importing int/float modules in librustc_* | Linus Färnstrand | -1/+1 |
| 2020-04-03 | Rollup merge of #70487 - Mark-Simulacrum:float-unchecked-casts, r=SimonSapin | Mazdak Farrokhzad | -3/+3 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -7/+6 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -5/+5 |
| 2020-03-29 | Stabilize float::to_int_unchecked | Mark Rousskov | -3/+3 |
| 2020-03-25 | make bit_width return u64, consistently with other sizes in the compiler | Ralf Jung | -18/+16 |
| 2020-03-23 | Rollup merge of #69940 - tmiasko:llvm-api, r=hanna-kruppe | Mazdak Farrokhzad | -3/+3 |
| 2020-03-17 | Rollup merge of #69922 - RalfJung:less-intrinsic, r=oli-obk | Mazdak Farrokhzad | -20/+2 |
| 2020-03-11 | librustc_codegen_llvm: Replace deprecated API usage | Tomasz Miąsko | -3/+3 |
| 2020-03-11 | implement zeroed and uninitialized with MaybeUninit | Ralf Jung | -20/+2 |
| 2020-03-07 | Apply review feedback | Amanieu d'Antras | -1/+1 |
| 2020-03-05 | Simplify the try intrinsic by using a callback in the catch block | Amanieu d'Antras | -54/+46 |
| 2020-03-02 | Apply CPU attributes to __rust_try | Amanieu d'Antras | -0/+2 |
| 2020-03-02 | Fix cross-DLL panics under MSVC | Amanieu d'Antras | -5/+25 |
| 2020-03-02 | Avoid over-aligning the return value in the -Cpanic=abort case | Mark Rousskov | -2/+4 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -1/+1 |
| 2020-02-15 | Change `const_field` and `const_caller_location` to return `ConstValue` inste... | Ben Lewis | -2/+1 |
| 2020-02-15 | Change const eval to return `ConstValue`, instead of `Const` as the type insi... | Ben Lewis | -1/+2 |
| 2020-01-11 | Apply review feedback | Amanieu d'Antras | -1/+5 |
| 2020-01-11 | Explain flag value of 8 for msvc_try | Amanieu d'Antras | -1/+5 |
| 2020-01-11 | Fix a memory leak in SEH unwinding if a Rust panic is caught by C++ and disca... | Amanieu d'Antras | -5/+18 |
| 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 | -567/+721 |
| 2019-12-22 | Rollup merge of #66877 - skinny121:const-eval-entry-points, r=oli-obk | Mazdak Farrokhzad | -6/+3 |
| 2019-12-22 | Add simpler entry points to const eval for common usages. | Ben Lewis | -6/+3 |
| 2019-12-20 | 1. ast::Mutability::{Mutable -> Mut, Immutable -> Not}. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-11 | rustc: Link LLVM directly into rustc again | Alex Crichton | -0/+1 |
| 2019-12-06 | Add `{f32,f64}::approx_unchecked_to<Int>` unsafe methods | Simon Sapin | -1/+28 |
| 2019-12-04 | Auto merge of #65947 - eddyb:fn-abi, r=oli-obk,nagisa | bors | -4/+5 |
| 2019-12-03 | rustc: take a PolyFnSig instead of an FnSig in FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-12-03 | rustc: rename FnAbi::new to FnAbi::of_fn_ptr. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-12-03 | rustc_codegen_ssa: take a FnAbi instead of a FnSig in declare_fn. | Eduard-Mihai Burtescu | -6/+5 |
| 2019-12-03 | rustc_codegen_ssa: remove define_fn and define_internal_fn. | Eduard-Mihai Burtescu | -1/+3 |
| 2019-12-02 | Update the minimum external LLVM to 7 | Josh Stone | -26/+5 |
| 2019-11-24 | Store ptr_width as u32 on Config | Mark Rousskov | -2/+2 |
| 2019-11-21 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -1/+1 |
| 2019-11-16 | avoid some casts | Ralf Jung | -9/+6 |
| 2019-11-16 | make simd_size return a u64 | Ralf Jung | -9/+13 |
| 2019-11-10 | Merge hir::Mutability into ast::Mutability. | Camille GILLOT | -1/+1 |
| 2019-11-07 | rustc_target: inline abi::FloatTy into abi::Primitive. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-11-07 | syntax: use distinct FloatTy from rustc_target. | Mazdak Farrokhzad | -3/+3 |
| 2019-11-05 | Auto merge of #65938 - eddyb:fn-abi-rename, r=oli-obk | bors | -7/+7 |
| 2019-11-03 | Make Emscripten unwinding use a valid type_info | Amanieu d'Antras | -3/+10 |
| 2019-11-03 | Make SEH exceptions use a rust_panic type instead of unsigned __int64* | Amanieu d'Antras | -17/+14 |
| 2019-11-03 | rustc_target: rename {Fn,Arg}Type to {Fn,Arg}Abi. | Eduard-Mihai Burtescu | -7/+7 |