Skip to content

Commit 8d96cc2

Browse files
committed
make llvm_asm options more intense
1 parent 17d3277 commit 8d96cc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ specify some extra info about the inline assembly:
159159

160160
Current valid options are:
161161

162-
1. *volatile* - specifying this is analogous to
162+
1. `volatile` - specifying this is analogous to
163163
`__asm__ __volatile__ (...)` in gcc/clang.
164-
2. *alignstack* - certain instructions expect the stack to be
164+
2. `alignstack` - certain instructions expect the stack to be
165165
aligned a certain way (i.e. SSE) and specifying this indicates to
166166
the compiler to insert its usual stack alignment code
167-
3. *intel* - use intel syntax instead of the default AT&T.
167+
3. `intel` - use intel syntax instead of the default AT&T.
168168

169169
```rust
170170
# #![feature(llvm_asm)]

0 commit comments

Comments
 (0)