File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -2312,8 +2312,7 @@ _mm256_cvttps_epi32(__m256 __a)
23122312// / A 256-bit vector of [4 x double].
23132313// / \returns A 64 bit double containing the first element of the input vector.
23142314static __inline double __DEFAULT_FN_ATTRS_CONSTEXPR
2315- _mm256_cvtsd_f64 (__m256d __a)
2316- {
2315+ _mm256_cvtsd_f64 (__m256d __a) {
23172316 return __a[0 ];
23182317}
23192318
@@ -2328,8 +2327,7 @@ _mm256_cvtsd_f64(__m256d __a)
23282327// / A 256-bit vector of [8 x i32].
23292328// / \returns A 32 bit integer containing the first element of the input vector.
23302329static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
2331- _mm256_cvtsi256_si32 (__m256i __a)
2332- {
2330+ _mm256_cvtsi256_si32 (__m256i __a) {
23332331 __v8si __b = (__v8si)__a;
23342332 return __b[0 ];
23352333}
@@ -2345,8 +2343,7 @@ _mm256_cvtsi256_si32(__m256i __a)
23452343// / A 256-bit vector of [8 x float].
23462344// / \returns A 32 bit float containing the first element of the input vector.
23472345static __inline float __DEFAULT_FN_ATTRS_CONSTEXPR
2348- _mm256_cvtss_f32 (__m256 __a)
2349- {
2346+ _mm256_cvtss_f32 (__m256 __a) {
23502347 return __a[0 ];
23512348}
23522349
You can’t perform that action at this time.
0 commit comments