Skip to content

Commit 1542c85

Browse files
Fix URLs (#928)
1 parent 7b92756 commit 1542c85

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

crates/core_arch/src/core_arch_docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ pub fn hex_encode(src: &[u8], dst: &mut [u8]) {
274274
}
275275
276276
// translated from
277-
// https://github.com/Matherunner/bin2hex-sse/blob/master/base16_sse4.cpp
277+
// <https://github.com/Matherunner/bin2hex-sse/blob/master/base16_sse4.cpp>
278278
#[target_feature(enable = "sse4.1")]
279279
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
280280
unsafe fn hex_encode_sse41(mut src: &[u8], dst: &mut [u8]) {

crates/core_arch/src/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//! `core_arch`
22
3+
#![cfg_attr(not(bootstrap), allow(automatic_links))]
34
#[macro_use]
45
mod macros;
56

crates/core_arch/src/x86/avx2.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3735,7 +3735,7 @@ pub unsafe fn _mm256_xor_si256(a: __m256i, b: __m256i) -> __m256i {
37353735
/// Extracts an 8-bit integer from `a`, selected with `imm8`. Returns a 32-bit
37363736
/// integer containing the zero-extended integer data.
37373737
///
3738-
/// See [LLVM commit D20468][https://reviews.llvm.org/D20468].
3738+
/// See [LLVM commit D20468](https://reviews.llvm.org/D20468).
37393739
///
37403740
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_extract_epi8)
37413741
#[inline]
@@ -3756,7 +3756,7 @@ pub unsafe fn _mm256_extract_epi8(a: __m256i, imm8: i32) -> i32 {
37563756
/// Extracts a 16-bit integer from `a`, selected with `imm8`. Returns a 32-bit
37573757
/// integer containing the zero-extended integer data.
37583758
///
3759-
/// See [LLVM commit D20468][https://reviews.llvm.org/D20468].
3759+
/// See [LLVM commit D20468](https://reviews.llvm.org/D20468).
37603760
///
37613761
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_extract_epi16)
37623762
#[inline]

crates/core_arch/src/x86/sse41.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ pub unsafe fn _mm_extract_ps(a: __m128, imm8: i32) -> i32 {
178178
/// Extracts an 8-bit integer from `a`, selected with `imm8`. Returns a 32-bit
179179
/// integer containing the zero-extended integer data.
180180
///
181-
/// See [LLVM commit D20468][https://reviews.llvm.org/D20468].
181+
/// See [LLVM commit D20468](https://reviews.llvm.org/D20468).
182182
///
183183
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_extract_epi8)
184184
#[inline]

0 commit comments

Comments
 (0)