Skip to content

Commit 38c83e7

Browse files
committed
Fix formatting
1 parent 416a4a9 commit 38c83e7

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

clang/lib/Headers/avxintrin.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff 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.
23142314
static __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.
23302329
static __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.
23472345
static __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

0 commit comments

Comments
 (0)