File tree 2 files changed +6
-5
lines changed
compiler/rustc_codegen_llvm/src/llvm
library/portable-simd/crates/core_simd/src
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -576,12 +576,12 @@ pub enum PassKind {
576
576
Module ,
577
577
}
578
578
579
- /// LLVMRustThinLTOData
579
+ // LLVMRustThinLTOData
580
580
extern "C" {
581
581
pub type ThinLTOData ;
582
582
}
583
583
584
- /// LLVMRustThinLTOBuffer
584
+ // LLVMRustThinLTOBuffer
585
585
extern "C" {
586
586
pub type ThinLTOBuffer ;
587
587
}
Original file line number Diff line number Diff line change 18
18
//!
19
19
//! Unless stated otherwise, all intrinsics for binary operations require SIMD vectors of equal types and lengths.
20
20
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
+
22
+ // These intrinsics aren't linked directly from LLVM and are mostly undocumented, however they are
23
+ // mostly lowered to the matching LLVM instructions by the compiler in a fairly straightforward manner.
24
+ // The associated LLVM instruction or intrinsic is documented alongside each Rust intrinsic function.
24
25
extern "platform-intrinsic" {
25
26
/// add/fadd
26
27
pub ( crate ) fn simd_add < T > ( x : T , y : T ) -> T ;
You can’t perform that action at this time.
0 commit comments