about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2022-03-04 14:14:49 -0500
committerGitHub <noreply@github.com>2022-03-04 11:14:49 -0800
commit4ddcc006a9d8b4db65d7809881d058bf9b6cd8b0 (patch)
tree3f3f66e4af54803189cee9ca220c5cc14dabd959
parent30975615b7c206ee96eddbf84fc0f11ee896f849 (diff)
downloadrust-4ddcc006a9d8b4db65d7809881d058bf9b6cd8b0.tar.gz
rust-4ddcc006a9d8b4db65d7809881d058bf9b6cd8b0.zip
rust-lang/portable-simd#252: extern blocks don't have doc comments
-rw-r--r--crates/core_simd/src/intrinsics.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/core_simd/src/intrinsics.rs b/crates/core_simd/src/intrinsics.rs
index 47edff4a66a..ee7408b62de 100644
--- a/crates/core_simd/src/intrinsics.rs
+++ b/crates/core_simd/src/intrinsics.rs
@@ -18,9 +18,9 @@
 //!
 //! Unless stated otherwise, all intrinsics for binary operations require SIMD vectors of equal types and lengths.
 
-/// These intrinsics aren't linked directly from LLVM and are mostly undocumented, however they are
-/// mostly lowered to the matching LLVM instructions by the compiler in a fairly straightforward manner.
-/// The associated LLVM instruction or intrinsic is documented alongside each Rust intrinsic function.
+// These intrinsics aren't linked directly from LLVM and are mostly undocumented, however they are
+// mostly lowered to the matching LLVM instructions by the compiler in a fairly straightforward manner.
+// The associated LLVM instruction or intrinsic is documented alongside each Rust intrinsic function.
 extern "platform-intrinsic" {
     /// add/fadd
     pub(crate) fn simd_add<T>(x: T, y: T) -> T;