| Age | Commit message (Expand) | Author | Lines |
| 2021-03-10 | Rollup merge of #82217 - m-ou-se:edition-prelude, r=nikomatsakis | Dylan DPC | -11/+19 |
| 2021-03-08 | Move default inline asm dialect to Session | asquared31415 | -6/+2 |
| 2021-03-08 | Rollup merge of #82682 - petrochenkov:cfgeval, r=Aaron1011 | Dylan DPC | -21/+162 |
| 2021-03-07 | rustc_builtin_macros: Share some more logic between `derive` and `cfg_eval` | Vadim Petrochenkov | -26/+14 |
| 2021-03-07 | cfg_eval: Configure everything through mutable visitor methods | Vadim Petrochenkov | -70/+27 |
| 2021-03-07 | Move full configuration logic from `rustc_expand` to `rustc_builtin_macros` | Vadim Petrochenkov | -7/+178 |
| 2021-03-06 | Implement built-in attribute macro `#[cfg_eval]` | Vadim Petrochenkov | -0/+31 |
| 2021-03-06 | rustc_ast: Replace `AstLike::finalize_tokens` with a getter `tokens_mut` | Vadim Petrochenkov | -9/+3 |
| 2021-03-05 | expand: Some more consistent naming in module loading | Vadim Petrochenkov | -2/+2 |
| 2021-03-05 | expand: Move module file path stack from global session to expansion data | Vadim Petrochenkov | -4/+3 |
| 2021-02-25 | Pick the injected prelude based on the edition. | Mara Bos | -11/+19 |
| 2021-02-20 | Remove some P-s | Dániel Buga | -4/+3 |
| 2021-02-20 | Take into account target default syntax | asquared31415 | -48/+72 |
| 2021-02-18 | Emit error when trying to use assembler syntax directives in `asm!` | asquared31415 | -1/+52 |
| 2021-02-18 | ast: Keep expansion status for out-of-line module items | Vadim Petrochenkov | -7/+6 |
| 2021-02-18 | ast: Stop using `Mod` in `Crate` | Vadim Petrochenkov | -6/+10 |
| 2021-02-16 | avoid full-slicing slices | Matthias Krüger | -3/+3 |
| 2021-02-14 | bumped smallvec deps | klensy | -1/+1 |
| 2021-02-10 | Borrow builder only once in debug derive | Tomasz Miąsko | -9/+12 |
| 2021-02-09 | fix derive(RustcEncodable, RustcDecodable) | Skgland | -18/+12 |
| 2021-02-09 | use ufcs in derive(RustDecodable) | Skgland | -19/+31 |
| 2021-02-09 | use ufcs in derive(RustEncodable) | Skgland | -20/+40 |
| 2021-02-09 | use ufcs in derive(Ord) and derive(PartialOrd) | Skgland | -4/+7 |
| 2021-02-09 | Fix derived PartialOrd operators | Tomasz Miąsko | -190/+7 |
| 2021-02-07 | expand/resolve: Turn `#[derive]` into a regular macro attribute | Vadim Petrochenkov | -0/+135 |
| 2021-02-03 | Auto merge of #81294 - pnkfelix:issue-81211-use-ufcs-in-derive-debug, r=oli-obk | bors | -17/+21 |
| 2021-02-02 | Rollup merge of #81647 - m-ou-se:assert-2021-fix, r=petrochenkov | Jack Huey | -2/+2 |
| 2021-02-02 | Auto merge of #81405 - bugadani:ast, r=cjgillot | bors | -13/+17 |
| 2021-02-02 | Bump rustfmt version | Mark Rousskov | -1/+1 |
| 2021-02-01 | Fix bug with assert!() calling the wrong edition of panic!(). | Mara Bos | -2/+2 |
| 2021-02-01 | placate tidy. | Felix S. Klock II | -10/+4 |
| 2021-02-01 | Use UFCS instead of method calls in `derive(Debug)`. See issue 81211 for disc... | Felix S. Klock II | -15/+25 |
| 2021-02-01 | Auto merge of #80851 - m-ou-se:panic-2021, r=petrochenkov | bors | -0/+51 |
| 2021-02-01 | Box the biggest ast::ItemKind variants | Dániel Buga | -13/+17 |
| 2021-01-25 | Implement new panic!() behaviour for Rust 2021. | Mara Bos | -0/+51 |
| 2021-01-24 | Rollup merge of #80855 - m-ou-se:assert-2021, r=petrochenkov | Jonas Schievink | -5/+21 |
| 2021-01-24 | Only call span.rust_2021() when necessary. | Mara Bos | -7/+5 |
| 2021-01-20 | Force token collection to run when parsing nonterminals | Aaron Hill | -2/+3 |
| 2021-01-10 | resolve: Simplify built-in macro table | Vadim Petrochenkov | -10/+4 |
| 2021-01-09 | Expand assert!(expr, args..) to include $crate for hygiene on 2021. | Mara Bos | -1/+19 |
| 2021-01-09 | Don't set builtin_name for builtin macro implementations. | Mara Bos | -1/+1 |
| 2021-01-09 | Allow #[rustc_builtin_macro = "name"]. | Mara Bos | -1/+1 |
| 2021-01-02 | reduce borrowing and (de)referencing around match patterns (clippy::match_ref... | Matthias Krüger | -5/+5 |
| 2021-01-01 | first pass at default values for const generics | Julian Knodt | -1/+2 |
| 2020-12-30 | Rollup merge of #80495 - jyn514:rename-empty, r=petrochenkov | Mara Bos | -1/+1 |
| 2020-12-30 | Rename kw::Invalid -> kw::Empty | Joshua Nelson | -1/+1 |
| 2020-12-24 | use matches!() macro in more places | Matthias Krüger | -26/+16 |
| 2020-12-22 | Add some intra-doc links to compiler docs | Joshua Nelson | -1/+4 |
| 2020-12-11 | fix clippy::unnecessary_filter_map | Matthias Krüger | -4/+1 |
| 2020-11-26 | Properly handle attributes on statements | Aaron Hill | -2/+2 |