about summary refs log tree commit diff
path: root/tests/ui/asm/aarch64/parse-error.stderr
AgeCommit message (Collapse)AuthorLines
2025-05-19in aarch64 asm parse error tests, only test cases specific to that targetFolkert de Vries-364/+6
this is more in line with the x86 parse error tests. The cross-platform tests were more complete anyway
2025-05-18delay error for unsupported optionsFolkert de Vries-26/+14
2025-02-10Show diff suggestion format on verbose replacementEsteban Küber-16/+24
``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
2024-08-13stabilize `asm_const`Folkert-59/+59
2024-07-27update aarch64 asm testsFolkert-18/+30
2024-07-11Fix aarch64 testEsteban Küber-24/+40
2024-03-07Bless aarch64 asm testGary Guo-4/+4
2023-01-27Relax ordering rules for `asm!` operandsAmanieu d'Antras-114/+55
The `asm!` and `global_asm!` macros require their operands to appear strictly in the following order: - Template strings - Positional operands - Named operands - Explicit register operands - `clobber_abi` - `options` This is overly strict and can be inconvienent when building complex `asm!` statements with macros. This PR relaxes the ordering requirements as follows: - Template strings must still come before all other operands. - Positional operands must still come before named and explicit register operands. - Named and explicit register operands can be freely mixed. - `options` and `clobber_abi` can appear in any position.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+446