| Age | Commit message (Expand) | Author | Lines |
| 2025-05-05 | Rename Instance::new to Instance::new_raw and add a note that it is raw | Michael Goulet | -4/+4 |
| 2025-05-05 | Resolve instance for SymFn in global/naked asm | Michael Goulet | -0/+62 |
| 2025-05-03 | allow `#[rustfmt::skip]` in combination with `#[naked]` | Folkert de Vries | -0/+6 |
| 2025-05-01 | Rollup merge of #140552 - folkertdev:naked-function-rustc_std_internal_symbol... | Guillaume Gomez | -1/+7 |
| 2025-05-01 | allow `#[rustc_std_internal_symbol]` in combination with `#[naked]` | Folkert de Vries | -1/+7 |
| 2025-05-01 | Remove redundant min-llvm-version annotations for LoongArch tests | WANG Rui | -17/+16 |
| 2025-04-28 | Rollup merge of #140302 - compiler-errors:inline_asm-bug, r=lcnr | Chris Denton | -0/+19 |
| 2025-04-27 | Move inline_asm to typeck, properly handle aliases | Michael Goulet | -0/+19 |
| 2025-04-23 | fix ICE in attribute name printing | Folkert de Vries | -1/+27 |
| 2025-04-20 | stabilize `naked_functions` | Folkert de Vries | -141/+140 |
| 2025-04-19 | Make `#[naked]` an unsafe attribute | Folkert de Vries | -222/+204 |
| 2025-04-16 | Explicitly annotate edition for `unpretty=expanded` and `unpretty=hir` tests | Lukas Wirth | -0/+2 |
| 2025-04-14 | Allow (but don't require) `#[unsafe(naked)]` so that `compiler-builtins` can ... | Folkert de Vries | -28/+28 |
| 2025-04-13 | Rollup merge of #139001 - folkertdev:naked-function-rustic-abi, r=traviscross... | Jacob Pratt | -39/+39 |
| 2025-04-08 | UI tests: add missing diagnostic kinds where possible | Vadim Petrochenkov | -7/+7 |
| 2025-04-07 | Add `naked_functions_rustic_abi` feature gate | Folkert de Vries | -39/+39 |
| 2025-04-05 | Update the minimum external LLVM to 19 | Josh Stone | -1407/+112 |
| 2025-03-25 | compiletest: Support matching on diagnostics without a span | Vadim Petrochenkov | -0/+5 |
| 2025-03-21 | Rollup merge of #138570 - folkertdev:naked-function-target-feature-gate, r=Am... | Matthias Krüger | -7/+21 |
| 2025-03-17 | Stabilize asm_goto | Gary Guo | -4/+3 |
| 2025-03-16 | add `naked_functions_target_feature` unstable feature | Folkert de Vries | -7/+21 |
| 2025-03-15 | Auto merge of #138379 - estebank:macro-backtrace-note, r=petrochenkov | bors | -3/+0 |
| 2025-03-15 | Rollup merge of #138056 - heiher:loong64v1.1-features, r=petrochenkov | León Orell Valerian Liehr | -16/+17 |
| 2025-03-14 | Do not suggest using `-Zmacro-backtrace` for builtin macros | Esteban Küber | -3/+0 |
| 2025-03-14 | rustc_target: Add target features for LoongArch v1.1 | WANG Rui | -16/+17 |
| 2025-03-10 | Pass InferCtxt to InlineAsmCtxt to properly taint on error | Michael Goulet | -14/+49 |
| 2025-03-06 | Exclude global_asm from mir_keys | Michael Goulet | -1/+27 |
| 2025-03-06 | Construct MIR error body for global_asm correctly | Michael Goulet | -0/+20 |
| 2025-02-26 | Bless tests | Gary Guo | -5/+29 |
| 2025-02-24 | Better error message for unsized pointers | Michael Goulet | -0/+37 |
| 2025-02-24 | Properly support thin ptrs that are only thin due to their param-env in asm m... | Michael Goulet | -0/+12 |
| 2025-02-22 | Make a fake body to store typeck results for global_asm | Michael Goulet | -0/+58 |
| 2025-02-12 | Rollup merge of #134090 - veluca93:stable-tf11, r=oli-obk | Jacob Pratt | -2/+0 |
| 2025-02-11 | Rollup merge of #136239 - folkertdev:show-supported-register-classes, r=Sparr... | Matthias Krüger | -0/+8 |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -38/+57 |
| 2025-01-29 | show supported register classes | Folkert de Vries | -0/+8 |
| 2025-01-28 | Remove duplicated code in RISC-V asm bad-reg test | Taiki Endo | -128/+90 |
| 2025-01-27 | Stabilize target_feature_11 | Caleb Zulawski | -2/+0 |
| 2024-12-23 | Note def descr in NonConstFunctionCall | Michael Goulet | -2/+2 |
| 2024-12-17 | tests/ui/asm: Remove uses of rustc_attrs, lang_items, and decl_macro features... | Taiki Endo | -617/+528 |
| 2024-12-12 | Rollup merge of #134070 - oli-obk:push-nquzymupzlsq, r=jieyouxu | Matthias Krüger | -0/+57 |
| 2024-12-12 | Auto merge of #129181 - beetrees:asm-spans, r=pnkfelix,compiler-errors | bors | -167/+1521 |
| 2024-12-11 | Auto merge of #128004 - folkertdev:naked-fn-asm, r=Amanieu | bors | -1/+1 |
| 2024-12-11 | Clarify why a type is rejected for asm! | Oli Scherer | -5/+10 |
| 2024-12-11 | Evaluate constants in SIMD vec lengths before rejecting them | Oli Scherer | -11/+1 |
| 2024-12-11 | Add regression tests | Oli Scherer | -0/+62 |
| 2024-12-10 | codegen `#[naked]` functions using `global_asm!` | Folkert | -1/+1 |
| 2024-12-10 | Rollup merge of #131558 - sassman:feat/warnin-for-no-mangle-together-with-exp... | León Orell Valerian Liehr | -1/+0 |
| 2024-11-30 | Auto merge of #133659 - jieyouxu:rollup-576gh4p, r=jieyouxu | bors | -335/+328 |
| 2024-11-29 | Support floats in input/output in vector registers of PowerPC inline assembly | Taiki Endo | -9/+9 |