diff options
| author | Carlos Pérez <37264926+CPerezz@users.noreply.github.com> | 2021-01-19 00:56:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-18 23:56:58 +0000 |
| commit | 390ce8dca55c82828a860588842ce0c8b4353a19 (patch) | |
| tree | e710692dbd82bfe9ae5eab4cee0642dcc5d0067b /library/stdarch/crates/std_detect | |
| parent | 7f67a97180090dfcc607b9f5ed349963bb3dcf35 (diff) | |
| download | rust-390ce8dca55c82828a860588842ce0c8b4353a19.tar.gz rust-390ce8dca55c82828a860588842ce0c8b4353a19.zip | |
Fix false rustdoc broken_intra_link detection (#984)
I saw in https://github.com/rust-lang/rust/issues/81037 that when you document private items with rustdoc the `x86 AVX-512 BITALG` feature comment does not contain scape characters in the message and therefore rustdoc was emiting warnings. This fixes it.
Diffstat (limited to 'library/stdarch/crates/std_detect')
| -rw-r--r-- | library/stdarch/crates/std_detect/src/detect/arch/x86.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs index 08a223fa02f..e21ee6c3cb2 100644 --- a/library/stdarch/crates/std_detect/src/detect/arch/x86.rs +++ b/library/stdarch/crates/std_detect/src/detect/arch/x86.rs @@ -158,7 +158,7 @@ features! { @FEATURE: #[stable(feature = "simd_x86", since = "1.27.0")] avx512vnni: "avx512vnni"; /// AVX-512 VNNI (Vector Neural Network Instructions) @FEATURE: #[stable(feature = "simd_x86", since = "1.27.0")] avx512bitalg: "avx512bitalg"; - /// AVX-512 BITALG (Support for VPOPCNT[B,W] and VPSHUFBITQMB) + /// AVX-512 BITALG (Support for VPOPCNT\[B,W\] and VPSHUFBITQMB) @FEATURE: #[stable(feature = "simd_x86", since = "1.27.0")] avx512bf16: "avx512bf16"; /// AVX-512 BF16 (BFLOAT16 instructions) @FEATURE: #[stable(feature = "simd_x86", since = "1.27.0")] avx512vp2intersect: "avx512vp2intersect"; |
