Skip to content

Commit 65b1cf2

Browse files
committed
Fix broken link
1 parent ae298d8 commit 65b1cf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0000-inline-asm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ fn mul(a: u64, b: u64) -> u128 {
977977

978978
## Use AT&T syntax by default on x86
979979

980-
x86 is particular in that there are [two widely used dialects] for its assembly code: Intel syntax, which is the official syntax for x86 assembly, and AT&T syntax which is used by GCC (via GAS). There is no functional difference between those two dialects, they both support the same functionality but with a [different syntax][gas-syntax]. This RFC chooses to use Intel syntax by default since it is more widely used and users generally find it easier to read and write.
980+
x86 is particular in that there are [two widely used dialects][gas-syntax] for its assembly code: Intel syntax, which is the official syntax for x86 assembly, and AT&T syntax which is used by GCC (via GAS). There is no functional difference between those two dialects, they both support the same functionality but with a different syntax. This RFC chooses to use Intel syntax by default since it is more widely used and users generally find it easier to read and write.
981981

982982
[gas-syntax]: https://sourceware.org/binutils/docs/as/i386_002dVariations.html
983983

0 commit comments

Comments
 (0)