Skip to content

Commit 50b7013

Browse files
authored
Merge pull request #1842 from dalance/fix_link
Fix an external link to absolute
2 parents 229ad13 + 7e4b2ce commit 50b7013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unsafe/asm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ assert_eq!(x, 4 * 6);
323323

324324
By default, `asm!` assumes that any register not specified as an output will have its contents preserved by the assembly code. The [`clobber_abi`] argument to `asm!` tells the compiler to automatically insert the necessary clobber operands according to the given calling convention ABI: any register which is not fully preserved in that ABI will be treated as clobbered. Multiple `clobber_abi` arguments may be provided and all clobbers from all specified ABIs will be inserted.
325325

326-
[`clobber_abi`]: ../../reference/inline-assembly.html#abi-clobbers
326+
[`clobber_abi`]: https://doc.rust-lang.org/stable/reference/inline-assembly.html#abi-clobbers
327327

328328
```rust
329329
# #[cfg(target_arch = "x86_64")] {

0 commit comments

Comments
 (0)