Skip to content

Commit bcdec54

Browse files
committed
Fix formatting, again
1 parent 38c83e7 commit bcdec54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/Headers/avxintrin.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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.
23142314
static __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.
23292329
static __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.
23452345
static __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 */

0 commit comments

Comments
 (0)