about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimothée Delabrouille <timothee.delabrouille@musicworldmedia.com>2021-04-09 12:18:18 +0200
committerTimothée Delabrouille <timothee.delabrouille@musicworldmedia.com>2021-04-09 12:18:18 +0200
commit1ddddca57e74ac8dc78630e6522f86462a6e61fe (patch)
treefff6f1f3ed9062a3405a119759e86ffb7ebcf14f
parent41c9c9b51f1d9a5e1650bbdb398fc78f836936c9 (diff)
parent406cfc3b209e7f10d909698432a9729d2f1ef2c2 (diff)
downloadrust-1ddddca57e74ac8dc78630e6522f86462a6e61fe.tar.gz
rust-1ddddca57e74ac8dc78630e6522f86462a6e61fe.zip
Merge branch 'issue-76704-fix' of https://github.com/tdelabro/rust into issue-76704-fix
merging
-rw-r--r--src/doc/unstable-book/src/library-features/asm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/library-features/asm.md b/src/doc/unstable-book/src/library-features/asm.md
index 348b14dccbd..d39f195455b 100644
--- a/src/doc/unstable-book/src/library-features/asm.md
+++ b/src/doc/unstable-book/src/library-features/asm.md
@@ -378,7 +378,7 @@ The compiler is allowed to instantiate multiple copies an `asm!` block, for exam
 
 Moreover, due to [an llvm bug], you shouldn't use labels exclusively make of `0` and `1` digits, e.g. `0`, `11` or `101010`, as they may end up being interpreted as binary values.
 
-```rust
+```rust,allow_fail
 #![feature(asm)]
 
 let mut a = 0;