rust/tests/ui/asm/aarch64
Amanieu d'Antras 52f7a218fb Relax ordering rules for asm! operands
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-27 08:15:38 +00:00
..
bad-options.rs
bad-options.stderr
bad-reg.rs
bad-reg.stderr
const.rs
duplicate-options.fixed
duplicate-options.rs
duplicate-options.stderr
interpolated-idents.rs
interpolated-idents.stderr
llvm-58384.rs
may_unwind.rs
parse-error.rs
parse-error.stderr
srcloc.rs
srcloc.stderr
sym.rs
type-check-2-2.rs
type-check-2-2.stderr
type-check-2.rs
type-check-2.stderr
type-check-3.rs
type-check-3.stderr
type-check-4.rs
type-check-4.stderr