Fix unused_doc_comments lint errors
This commit is contained in:
parent
ac891ea374
commit
628fbdf9b7
2 changed files with 6 additions and 5 deletions
|
@ -576,12 +576,12 @@ pub enum PassKind {
|
||||||
Module,
|
Module,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// LLVMRustThinLTOData
|
// LLVMRustThinLTOData
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub type ThinLTOData;
|
pub type ThinLTOData;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// LLVMRustThinLTOBuffer
|
// LLVMRustThinLTOBuffer
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub type ThinLTOBuffer;
|
pub type ThinLTOBuffer;
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,9 +18,10 @@
|
||||||
//!
|
//!
|
||||||
//! Unless stated otherwise, all intrinsics for binary operations require SIMD vectors of equal types and lengths.
|
//! 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.
|
// These intrinsics aren't linked directly from LLVM and are mostly undocumented, however they are
|
||||||
/// The associated LLVM instruction or intrinsic is documented alongside each Rust intrinsic function.
|
// 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" {
|
extern "platform-intrinsic" {
|
||||||
/// add/fadd
|
/// add/fadd
|
||||||
pub(crate) fn simd_add<T>(x: T, y: T) -> T;
|
pub(crate) fn simd_add<T>(x: T, y: T) -> T;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue