| Age | Commit message (Expand) | Author | Lines |
| 2024-10-06 | various fixes for `naked_asm!` implementation | Folkert de Vries | -3/+1 |
| 2024-10-06 | disallow `asm!` in `#[naked]` functions | Folkert de Vries | -177/+144 |
| 2024-10-06 | use `naked_asm!` in naked-function tests | Folkert | -38/+58 |
| 2024-10-06 | use `naked_asm!` in `tests/ui/asm/naked-functions.rs` | Folkert | -139/+117 |
| 2024-09-30 | Rollup merge of #130895 - RalfJung:asm-tests, r=nnethercote | Matthias Krüger | -96/+22 |
| 2024-09-30 | make type-check-4 asm tests about non-const expressions | Ralf Jung | -96/+22 |
| 2024-09-29 | adjust test | Ralf Jung | -11/+4 |
| 2024-09-27 | Rollup merge of #130917 - gurry:129503-ice-wrong-span-in-macros, r=chenyukang | Matthias Krüger | -0/+54 |
| 2024-09-27 | Fix error span when arg to asm!() is a macro call | Gurinder Singh | -0/+54 |
| 2024-09-26 | Stabilize `const_refs_to_static` | Ding Xiang Fei | -93/+52 |
| 2024-09-18 | Update the minimum external LLVM to 18 | Josh Stone | -122/+22 |
| 2024-09-11 | Auto merge of #130195 - folkertdev:naked-asm-outside-naked-fn, r=Amanieu | bors | -0/+55 |
| 2024-09-10 | Auto merge of #129403 - scottmcm:only-array-simd, r=compiler-errors | bors | -22/+19 |
| 2024-09-10 | disallow `naked_asm!` outside of `#[naked]` functions | Folkert de Vries | -0/+55 |
| 2024-09-09 | Ban non-array SIMD | Scott McMurray | -22/+19 |
| 2024-09-09 | bootstrap `naked_asm!` for `compiler-builtins` | Folkert de Vries | -6/+6 |
| 2024-09-04 | fix ICE when `asm_const` and `const_refs_to_static` are combined | Folkert de Vries | -0/+43 |
| 2024-08-28 | Rollup merge of #129421 - jdonszelmann:naked-repr-align-functions, r=workingj... | Matthias Krüger | -0/+125 |
| 2024-08-27 | add uitest for naked functions and the repr attr on functions | jdonszelmann | -0/+125 |
| 2024-08-25 | Add `f16` and `f128` inline ASM support for `aarch64` | beetrees | -6/+10 |
| 2024-08-24 | Enable f16 in assembly on aarch64 platforms that support it | rongfu.leng | -3/+24 |
| 2024-08-13 | stabilize `asm_const` | Folkert | -287/+263 |
| 2024-08-06 | Auto merge of #125558 - Amanieu:const-asm-type, r=lcnr | bors | -228/+217 |
| 2024-08-04 | Rollup merge of #128305 - folkertdev:asm-parser-unsupported-operand, r=Amanieu | Matthias Krüger | -7/+48 |
| 2024-08-02 | add `needs-asm-support` to invalid-sym-operand | Folkert | -3/+7 |
| 2024-08-01 | separate test file for invalid const operand | Folkert | -143/+155 |
| 2024-08-01 | separate test file for invalid sym operand | Folkert | -116/+80 |
| 2024-07-30 | make `///` doc comments compatible with naked functions | Folkert | -0/+3 |
| 2024-07-28 | improve error message when global asm uses inline asm operands | Folkert | -7/+48 |
| 2024-07-28 | Rollup merge of #127853 - folkertdev:naked-function-error-messages, r=bjorn3 | Matthias Krüger | -73/+246 |
| 2024-07-27 | add `needs-asm-support` to `tests/ui/asm/unsupported-option.rs` | Folkert | -3/+5 |
| 2024-07-27 | fix `tests/ui/asm/naked-functions.rs` for aarch64 | Folkert | -6/+7 |
| 2024-07-27 | update aarch64 asm tests | Folkert | -47/+61 |
| 2024-07-27 | allow `#[target_feature]` on `#[naked]` functions | Folkert | -25/+6 |
| 2024-07-27 | switch to an allowlist approach | Folkert | -27/+128 |
| 2024-07-26 | add `run-rustfix` test for machine-applicable suggestion | Folkert | -0/+40 |
| 2024-07-25 | improve error message when `global_asm!` uses `asm!` options | Folkert | -41/+63 |
| 2024-07-25 | apply fix suggested by lcnr | Folkert | -39/+49 |
| 2024-07-25 | Work around #96304 by ignoring one test case | Amanieu d'Antras | -43/+42 |
| 2024-07-25 | Rollup merge of #128138 - folkertdev:asm-option-allowlist, r=lcnr | Matthias Krüger | -2/+2 |
| 2024-07-24 | use an allow list for allowed asm options in naked functions | Folkert | -2/+2 |
| 2024-07-18 | Update the `binary_asm_label` message | Trevor Gross | -5/+15 |
| 2024-07-18 | Change `binary_asm_labels` to only fire on x86 and x86_64 | Trevor Gross | -0/+17 |
| 2024-07-17 | add error message when `#[naked]` is used with `#[test]` | Folkert | -0/+74 |
| 2024-07-16 | improve error message when `#[naked]` is used with `#[track-caller] and `#[ta... | Folkert | -0/+25 |
| 2024-07-16 | improve error message when `#[naked]` is used with `#[inline]` | Folkert | -71/+62 |
| 2024-07-12 | Rollup merge of #126922 - asquared31415:asm_binary_label, r=estebank | Jubilee | -53/+255 |
| 2024-07-11 | Fix aarch64 test | Esteban Küber | -24/+40 |
| 2024-07-11 | Account for `let foo = expr`; to suggest `const foo: Ty = expr;` | Esteban Küber | -22/+22 |
| 2024-07-11 | Use verbose style when suggesting changing `const` with `let` | Esteban Küber | -33/+55 |