mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-21 05:45:19 +00:00
Fix comments which used /// instead of //
This commit is contained in:
@@ -22,25 +22,25 @@ __m256bh :: #simd[16]bf16
|
||||
__m512bh :: #simd[32]bf16
|
||||
|
||||
|
||||
/// The `__mmask64` type used in AVX-512 intrinsics, a 64-bit integer
|
||||
// The `__mmask64` type used in AVX-512 intrinsics, a 64-bit integer
|
||||
__mmask64 :: u64
|
||||
|
||||
/// The `__mmask32` type used in AVX-512 intrinsics, a 32-bit integer
|
||||
// The `__mmask32` type used in AVX-512 intrinsics, a 32-bit integer
|
||||
__mmask32 :: u32
|
||||
|
||||
/// The `__mmask16` type used in AVX-512 intrinsics, a 16-bit integer
|
||||
// The `__mmask16` type used in AVX-512 intrinsics, a 16-bit integer
|
||||
__mmask16 :: u16
|
||||
|
||||
/// The `__mmask8` type used in AVX-512 intrinsics, a 8-bit integer
|
||||
// The `__mmask8` type used in AVX-512 intrinsics, a 8-bit integer
|
||||
__mmask8 :: u8
|
||||
|
||||
/// The `_MM_CMPINT_ENUM` type used to specify comparison operations in AVX-512 intrinsics.
|
||||
// The `_MM_CMPINT_ENUM` type used to specify comparison operations in AVX-512 intrinsics.
|
||||
_MM_CMPINT_ENUM :: i32
|
||||
|
||||
/// The `MM_MANTISSA_NORM_ENUM` type used to specify mantissa normalized operations in AVX-512 intrinsics.
|
||||
// The `MM_MANTISSA_NORM_ENUM` type used to specify mantissa normalized operations in AVX-512 intrinsics.
|
||||
_MM_MANTISSA_NORM_ENUM :: i32
|
||||
|
||||
/// The `MM_MANTISSA_SIGN_ENUM` type used to specify mantissa signed operations in AVX-512 intrinsics.
|
||||
// The `MM_MANTISSA_SIGN_ENUM` type used to specify mantissa signed operations in AVX-512 intrinsics.
|
||||
_MM_MANTISSA_SIGN_ENUM :: i32
|
||||
|
||||
_MM_PERM_ENUM :: i32
|
||||
|
||||
Reference in New Issue
Block a user