]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/unstable-book/src/library-features/llvm-asm.md
make llvm_asm options more intense
[rust.git] / src / doc / unstable-book / src / library-features / llvm-asm.md
index da01d9228f14e0ff12177e7694205a4f9a6ed095..a2f029db2916551e68afe12b388612747ce573b0 100644 (file)
@@ -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)]