tmp/tmpw1vje884/{from.md → to.md}
RENAMED
|
@@ -1,16 +1,16 @@
|
|
| 1 |
## The `asm` declaration <a id="dcl.asm">[[dcl.asm]]</a>
|
| 2 |
|
| 3 |
An `asm` declaration has the form
|
| 4 |
|
| 5 |
``` bnf
|
| 6 |
-
asm-
|
| 7 |
-
attribute-specifier-seqₒₚₜ
|
| 8 |
```
|
| 9 |
|
| 10 |
The `asm` declaration is conditionally-supported; its meaning is
|
| 11 |
*implementation-defined*. The optional *attribute-specifier-seq* in an
|
| 12 |
-
*asm-
|
| 13 |
|
| 14 |
[*Note 1*: Typically it is used to pass information through the
|
| 15 |
implementation to an assembler. — *end note*]
|
| 16 |
|
|
|
|
| 1 |
## The `asm` declaration <a id="dcl.asm">[[dcl.asm]]</a>
|
| 2 |
|
| 3 |
An `asm` declaration has the form
|
| 4 |
|
| 5 |
``` bnf
|
| 6 |
+
asm-declaration:
|
| 7 |
+
attribute-specifier-seqₒₚₜ asm '(' string-literal ')' ';'
|
| 8 |
```
|
| 9 |
|
| 10 |
The `asm` declaration is conditionally-supported; its meaning is
|
| 11 |
*implementation-defined*. The optional *attribute-specifier-seq* in an
|
| 12 |
+
*asm-declaration* appertains to the `asm` declaration.
|
| 13 |
|
| 14 |
[*Note 1*: Typically it is used to pass information through the
|
| 15 |
implementation to an assembler. — *end note*]
|
| 16 |
|