| Age | Commit message (Expand) | Author | Lines |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -2/+1 |
| 2023-06-28 | fix typo | He1pa | -1/+1 |
| 2023-06-25 | Migrate some rustc_builtin_macros to SessionDiagnostic | He1pa | -8/+4 |
| 2023-06-16 | fix ICE on specific malformed asm clobber_abi | asquared31415 | -5/+1 |
| 2023-05-16 | Avoid `&format("...")` calls in error message code. | Nicholas Nethercote | -3/+3 |
| 2023-05-04 | Rollup merge of #111027 - clubby789:query-instability-builtin-macros, r=petro... | Matthias Krüger | -10/+11 |
| 2023-05-03 | Restrict `From<S>` for `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -4/+4 |
| 2023-05-02 | Use `GrowableBitSet` to store positional indexes in `asm!` | clubby789 | -7/+8 |
| 2023-05-02 | Remove `allow(rustc::potential_query_instability)` for `builtin_macros` | clubby789 | -5/+5 |
| 2023-05-01 | soften the wording for removing type ascription | yukang | -2/+1 |
| 2023-05-01 | Rip it out | Nilstrieb | -1/+0 |
| 2023-04-30 | Migrate `builtin_macros::asm` diagnostics to translatable diagnostics | clubby789 | -67/+26 |
| 2023-04-25 | Fix static string lints | clubby789 | -20/+8 |
| 2023-03-10 | Rollup merge of #105798 - Amanieu:relax-asm, r=joshtriplett | Matthias Krüger | -31/+4 |
| 2023-02-24 | Replace parse_[sth]_expr with parse_expr_[sth] function names | est31 | -1/+1 |
| 2023-01-27 | Relax ordering rules for `asm!` operands | Amanieu d'Antras | -31/+4 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -1/+1 |
| 2022-11-24 | Auto merge of #104507 - WaffleLapkin:asderefsyou, r=wesleywiser | bors | -1/+1 |
| 2022-11-16 | Use `as_deref` in compiler (but only where it makes sense) | Maybe Waffle | -1/+1 |
| 2022-11-16 | Use `token::Lit` in `ast::ExprKind::Lit`. | Nicholas Nethercote | -1/+5 |
| 2022-08-22 | Use `AttrVec` in more places. | Nicholas Nethercote | -1/+1 |
| 2022-08-02 | Rollup merge of #100045 - Amanieu:global_asm_may_unwind, r=tmiasko | Matthias Krüger | -2/+2 |
| 2022-08-02 | Properly reject the `may_unwind` option in `global_asm!` | Amanieu d'Antras | -2/+2 |
| 2022-07-31 | Always include a position span in rustc_parse_format::Argument | Alex Macleod | -2/+3 |
| 2022-07-25 | Generate correct suggestion with named arguments used positionally | Preston From | -1/+1 |
| 2022-07-14 | Rollup merge of #99192 - Amanieu:fix-asm-srcloc, r=petrochenkov | Dylan DPC | -2/+2 |
| 2022-07-14 | Fix spans for asm diagnostics | Amanieu d'Antras | -2/+2 |
| 2022-06-13 | remove unnecessary `to_string` and `String::new` for `tool_only_span_suggestion` | Takayuki Maeda | -1/+1 |
| 2022-05-03 | Make rustc_parse_format compile on stable | bjorn3 | -12/+27 |
| 2022-04-28 | rustc_ast: Harmonize delimiter naming with `proc_macro::Delimiter` | Vadim Petrochenkov | -10/+10 |
| 2022-04-14 | Reimplement lowering of sym operands for asm! so that it also works with glob... | Amanieu d'Antras | -10/+12 |
| 2022-02-23 | rustc_errors: let `DiagnosticBuilder::emit` return a "guarantee of emission". | Eduard-Mihai Burtescu | -9/+6 |
| 2022-02-16 | Correctly mark the span of captured arguments in `format_args!()` | Chayim Refael Friedman | -2/+2 |
| 2022-01-17 | Auto merge of #92816 - tmiasko:rm-llvm-asm, r=Amanieu | bors | -9/+0 |
| 2022-01-12 | Remove deprecated LLVM-style inline assembly | Tomasz Miąsko | -9/+0 |
| 2022-01-10 | Update AsmArgs field visibility for rustfmt | Yacin Tmimi | -4/+4 |
| 2021-12-21 | rustc_builtin_macros: make asm mod public for rustfmt | Caleb Cartwright | -2/+2 |
| 2021-12-19 | Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obk | bors | -1/+1 |
| 2021-12-16 | builtin_macros: allow external consumers for AsmArgs parsing | Caleb Cartwright | -29/+43 |
| 2021-12-15 | Remove unnecessary sigils around `Symbol::as_str()` calls. | Nicholas Nethercote | -1/+1 |
| 2021-12-12 | Remove automatic rustfix of asm! to llvm_asm! | Amanieu d'Antras | -13/+0 |
| 2021-12-09 | Remove redundant [..]s | est31 | -1/+1 |
| 2021-12-03 | Add initial AST and MIR support for unwinding from inline assembly | Amanieu d'Antras | -0/+2 |
| 2021-11-10 | Add support for specifying multiple clobber_abi in `asm!` | asquared31415 | -31/+61 |
| 2021-11-07 | more clippy fixes | Matthias Krüger | -1/+1 |
| 2021-10-17 | rustc_span: `Ident::invalid` -> `Ident::empty` | Vadim Petrochenkov | -1/+1 |
| 2021-09-11 | Rollup merge of #88209 - Amanieu:asm_in_underscore, r=nagisa | Jubilee | -0/+12 |
| 2021-09-10 | Rollup merge of #87441 - ibraheemdev:i-86865, r=cjgillot | Manish Goregaokar | -1/+1 |
| 2021-08-31 | emit suggestion byte literal is passed to `format!` | ibraheemdev | -1/+1 |
| 2021-08-24 | Move `named_asm_labels` to a HIR lint | asquared31415 | -76/+14 |