about summary refs log tree commit diff
path: root/tests/ui/asm/aarch64
AgeCommit message (Collapse)AuthorLines
2023-11-28Name explicit registers in conflict register errors for inline assemblyGeorge Wort-9/+9
2023-10-19Fix duplicate labels emitted in `render_multispan_macro_backtrace()`Gurinder Singh-6/+1
Using hash set instead of vec to weed out duplicates
2023-09-21adjust how closure/generator types and rvalues are printedRalf Jung-1/+1
2023-06-14mark relevant tests as requiring unwindingPietro Albini-0/+1
2023-01-27Relax ordering rules for `asm!` operandsAmanieu d'Antras-129/+63
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/+2240