We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17d3277 commit 8d96cc2Copy full SHA for 8d96cc2
src/doc/unstable-book/src/library-features/llvm-asm.md
@@ -159,12 +159,12 @@ specify some extra info about the inline assembly:
159
160
Current valid options are:
161
162
-1. *volatile* - specifying this is analogous to
+1. `volatile` - specifying this is analogous to
163
`__asm__ __volatile__ (...)` in gcc/clang.
164
-2. *alignstack* - certain instructions expect the stack to be
+2. `alignstack` - certain instructions expect the stack to be
165
aligned a certain way (i.e. SSE) and specifying this indicates to
166
the compiler to insert its usual stack alignment code
167
-3. *intel* - use intel syntax instead of the default AT&T.
+3. `intel` - use intel syntax instead of the default AT&T.
168
169
```rust
170
# #![feature(llvm_asm)]
0 commit comments