Skip to content

Commit 4ddcc00

Browse files
authored
#252: extern blocks don't have doc comments
1 parent 3097561 commit 4ddcc00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/core_simd/src/intrinsics.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
//!
1919
//! Unless stated otherwise, all intrinsics for binary operations require SIMD vectors of equal types and lengths.
2020
21-
/// These intrinsics aren't linked directly from LLVM and are mostly undocumented, however they are
22-
/// mostly lowered to the matching LLVM instructions by the compiler in a fairly straightforward manner.
23-
/// The associated LLVM instruction or intrinsic is documented alongside each Rust intrinsic function.
21+
// These intrinsics aren't linked directly from LLVM and are mostly undocumented, however they are
22+
// mostly lowered to the matching LLVM instructions by the compiler in a fairly straightforward manner.
23+
// The associated LLVM instruction or intrinsic is documented alongside each Rust intrinsic function.
2424
extern "platform-intrinsic" {
2525
/// add/fadd
2626
pub(crate) fn simd_add<T>(x: T, y: T) -> T;

0 commit comments

Comments
 (0)