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
..
2023-01-27 08:15:38 +00:00
2022-11-22 09:04:15 +11:00
2022-10-23 10:09:44 +02:00
2022-07-29 15:52:15 +10:00
2022-12-18 00:29:25 +01:00
2022-11-19 22:16:42 +01:00
2022-07-29 15:52:15 +10:00