diff options
| author | Timothée Delabrouille <timothee.delabrouille@musicworldmedia.com> | 2021-04-09 12:18:18 +0200 |
|---|---|---|
| committer | Timothée Delabrouille <timothee.delabrouille@musicworldmedia.com> | 2021-04-09 12:18:18 +0200 |
| commit | 1ddddca57e74ac8dc78630e6522f86462a6e61fe (patch) | |
| tree | fff6f1f3ed9062a3405a119759e86ffb7ebcf14f | |
| parent | 41c9c9b51f1d9a5e1650bbdb398fc78f836936c9 (diff) | |
| parent | 406cfc3b209e7f10d909698432a9729d2f1ef2c2 (diff) | |
| download | rust-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.md | 2 |
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; |
