File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2313,7 +2313,7 @@ _mm256_cvttps_epi32(__m256 __a)
23132313// / \returns A 64 bit double containing the first element of the input vector.
23142314static __inline double __DEFAULT_FN_ATTRS_CONSTEXPR
23152315_mm256_cvtsd_f64 (__m256d __a) {
2316- return __a[0 ];
2316+ return __a[0 ];
23172317}
23182318
23192319// / Returns the first element of the input vector of [8 x i32].
@@ -2328,8 +2328,8 @@ _mm256_cvtsd_f64(__m256d __a) {
23282328// / \returns A 32 bit integer containing the first element of the input vector.
23292329static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
23302330_mm256_cvtsi256_si32 (__m256i __a) {
2331- __v8si __b = (__v8si)__a;
2332- return __b[0 ];
2331+ __v8si __b = (__v8si)__a;
2332+ return __b[0 ];
23332333}
23342334
23352335// / Returns the first element of the input vector of [8 x float].
@@ -2344,7 +2344,7 @@ _mm256_cvtsi256_si32(__m256i __a) {
23442344// / \returns A 32 bit float containing the first element of the input vector.
23452345static __inline float __DEFAULT_FN_ATTRS_CONSTEXPR
23462346_mm256_cvtss_f32 (__m256 __a) {
2347- return __a[0 ];
2347+ return __a[0 ];
23482348}
23492349
23502350/* Vector replicate */
You can’t perform that action at this time.
0 commit comments