Skip to content

Commit 8aec76c

Browse files
authored
Rollup merge of #89713 - nbdd0121:doc2, r=Amanieu
Fix ABNF of inline asm options This is the case since #73227. r? `@camelid`
2 parents ce6097d + 7b5bedf commit 8aec76c

File tree

1 file changed

+1
-1
lines changed
  • src/doc/unstable-book/src/library-features

1 file changed

+1
-1
lines changed

src/doc/unstable-book/src/library-features/asm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ operand := reg_operand / "const" const_expr / "sym" path
456456
clobber_abi := "clobber_abi(" <abi> ")"
457457
option := "pure" / "nomem" / "readonly" / "preserves_flags" / "noreturn" / "nostack" / "att_syntax" / "raw"
458458
options := "options(" option *["," option] [","] ")"
459-
asm := "asm!(" format_string *("," format_string) *("," [ident "="] operand) ["," clobber_abi] ["," options] [","] ")"
459+
asm := "asm!(" format_string *("," format_string) *("," [ident "="] operand) ["," clobber_abi] *("," options) [","] ")"
460460
```
461461

462462
Inline assembly is currently supported on the following architectures:

0 commit comments

Comments
 (0)