summary refs log tree commit diff
path: root/src/doc/book/inline-assembly.md
AgeCommit message (Collapse)AuthorLines
2016-11-13Improved punctuation, capitalization, and sentence structure of code snippet ↵Angelo Polo-2/+2
comments
2016-07-17doc/book: fix tests for non-x86 architectures, such as aarch64Ximin Luo-0/+8
`rustdoc --test` gets confused when "main" exists for some architectures but not others.
2016-07-06Correct inline assembly clobber formatting.CensoredUsername-3/+3
Fixes the formatting for inline assembly clobbers used in the book. As this causes llvm to silently ignore the clobber an error is also added to catch cases in which the wrong formatting was used. Additionally a test case is added to confirm that this error works.
2016-05-18Rust syntax coloring for some ignore, should-panic and no-run snippets.Steven Burns-1/+1
2016-03-09Remove inaccurate claim about inline assemblySteve Klabnik-2/+1
It's not like GCC's. Fixes #20213
2015-11-19src/doc/trpl -> src/doc/bookSteve Klabnik-0/+177
The book was located under 'src/doc/trpl' because originally, it was going to be hosted under that URL. Late in the game, before 1.0, we decided that /book was a better one, so we changed the output, but not the input. This causes confusion for no good reason. So we'll change the source directory to look like the output directory, like for every other thing in src/doc.