about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLzu Tao <taolzu@gmail.com>2020-09-13 14:39:55 +0000
committerLzu Tao <taolzu@gmail.com>2020-09-13 14:39:55 +0000
commit8d96cc238e571ef7d83dcf87239d525d644bbb69 (patch)
tree1fab180184fd3fabfeab3b676d8a76303240e094 /src
parent17d32770649fefe8efe6510f7dbff6123f544ba6 (diff)
downloadrust-8d96cc238e571ef7d83dcf87239d525d644bbb69.tar.gz
rust-8d96cc238e571ef7d83dcf87239d525d644bbb69.zip
make llvm_asm options more intense
Diffstat (limited to 'src')
-rw-r--r--src/doc/unstable-book/src/library-features/llvm-asm.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/unstable-book/src/library-features/llvm-asm.md b/src/doc/unstable-book/src/library-features/llvm-asm.md
index da01d9228f1..a2f029db291 100644
--- a/src/doc/unstable-book/src/library-features/llvm-asm.md
+++ b/src/doc/unstable-book/src/library-features/llvm-asm.md
@@ -159,12 +159,12 @@ specify some extra info about the inline assembly:
 
 Current valid options are:
 
-1. *volatile* - specifying this is analogous to
+1. `volatile` - specifying this is analogous to
    `__asm__ __volatile__ (...)` in gcc/clang.
-2. *alignstack* - certain instructions expect the stack to be
+2. `alignstack` - certain instructions expect the stack to be
    aligned a certain way (i.e. SSE) and specifying this indicates to
    the compiler to insert its usual stack alignment code
-3. *intel* - use intel syntax instead of the default AT&T.
+3. `intel` - use intel syntax instead of the default AT&T.
 
 ```rust
 # #![feature(llvm_asm)]