| Age | Commit message (Expand) | Author | Lines |
| 2020-08-30 | mv compiler to compiler/ | mark | -1789/+0 |
| 2020-08-17 | Auto merge of #75120 - JulianKnodt:rm_reps, r=oli-obk | bors | -2/+2 |
| 2020-08-17 | rust_ast::ast => rustc_ast | Ujjwal Sharma | -2/+2 |
| 2020-08-16 | hir: introduce `QPath::LangItem` | David Wood | -101/+60 |
| 2020-08-06 | Fix ICE when using asm! on an unsupported architecture | Amanieu d'Antras | -1/+1 |
| 2020-07-26 | Hygiene serialization implementation | Aaron Hill | -1/+2 |
| 2020-07-14 | Suggest borrowing in more unsized fn param cases | Esteban Küber | -1/+1 |
| 2020-06-26 | Explain move errors that occur due to method calls involving `self` | Aaron Hill | -3/+14 |
| 2020-06-26 | Rollup merge of #73588 - Amanieu:thumb-fp, r=nagisa | Manish Goregaokar | -0/+1 |
| 2020-06-22 | Revert "Rollup merge of #72389 - Aaron1011:feature/move-fn-self-msg, r=nikoma... | Aaron Hill | -19/+5 |
| 2020-06-21 | Fix handling of reserved registers for ARM inline asm | Amanieu d'Antras | -0/+1 |
| 2020-06-11 | Explain move errors that occur due to method calls involving `self` | Aaron Hill | -5/+19 |
| 2020-06-11 | Rollup merge of #73182 - Aaron1011:feature/call-fn-span, r=matthewjasper | Dylan DPC | -2/+2 |
| 2020-06-10 | Track span of function in method calls, and use this in #[track_caller] | Aaron Hill | -2/+2 |
| 2020-06-09 | Fix more clippy warnings | Matthias Krüger | -4/+2 |
| 2020-05-30 | Rollup merge of #72625 - Amanieu:asm-srcloc, r=petrochenkov | Ralf Jung | -1/+2 |
| 2020-05-29 | Improve inline asm error diagnostics | Amanieu d'Antras | -1/+2 |
| 2020-05-26 | Update src/librustc_ast_lowering/expr.rs | Amanieu d'Antras | -1/+1 |
| 2020-05-26 | Eagerly lower asm sub-expressions to HIR even if there is an error | Amanieu d'Antras | -33/+35 |
| 2020-05-20 | Rollup merge of #72275 - marmeladema:fix-issue-71104-2, r=ecstatic-morse | Dylan DPC | -1/+0 |
| 2020-05-18 | Move InlineAsmTemplatePiece and InlineAsmOptions to librustc_ast | Amanieu d'Antras | -2/+2 |
| 2020-05-18 | Implement att_syntax option | Amanieu d'Antras | -0/+9 |
| 2020-05-18 | Implement AST lowering for asm! | Amanieu d'Antras | -2/+294 |
| 2020-05-16 | Continue lowering for unsupported async generator instead of returning an error. | marmeladema | -1/+0 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -1/+1 |
| 2020-05-02 | Move ensure_sufficient_stack to data_structures | Simonas Kazlauskas | -1/+1 |
| 2020-05-02 | Prevent stack overflow for deeply recursive code | Oliver Scherer | -176/+191 |
| 2020-04-24 | Use correct span on while (let) lowering | flip1995 | -6/+2 |
| 2020-04-16 | Auto merge of #70831 - sfackler:shrink-future-stack, r=matthewjasper | bors | -11/+34 |
| 2020-04-13 | Use clearer message when obligation is caused by await expr | Tyler Mandry | -2/+2 |
| 2020-04-05 | Remove a stack frame from .await calls | Steven Fackler | -11/+34 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -6/+6 |
| 2020-03-21 | lowering: bug! -> panic! | Mazdak Farrokhzad | -2/+1 |
| 2020-03-17 | Don't create AST fragments when lowering to HIR | Jonas Schievink | -29/+33 |
| 2020-03-17 | Split up large `FnDecl` expression | Jonas Schievink | -14/+13 |
| 2020-03-17 | Improve comments in HIR lowering code | Jonas Schievink | -2/+3 |
| 2020-03-17 | Format | Jonas Schievink | -7/+3 |
| 2020-03-17 | Make async/await lowering use resume arguments | Jonas Schievink | -19/+76 |
| 2020-03-12 | ast: `Mac`/`Macro` -> `MacCall` | Vadim Petrochenkov | -1/+1 |
| 2020-03-01 | Rollup merge of #69580 - matthiaskrgr:map_clone, r=Centril | Yuki Okushi | -1/+1 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -4/+4 |
| 2020-02-29 | use .copied() instead of .map(|x| *x) on iterators | Matthias Krüger | -1/+1 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -4/+3 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -4/+4 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -1/+1 |
| 2020-02-04 | Update error message with too many parameters | Jonas Schievink | -1/+1 |
| 2020-02-02 | Allow 0 or 1 explicit generator parameters | Jonas Schievink | -2/+2 |
| 2020-01-21 | lowering: cleanup some hofs | Mazdak Farrokhzad | -12/+3 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 2020-01-16 | don't clone types that are copy | Matthias Krüger | -3/+3 |