Skip to content

Commit e56047a

Browse files
chore: update formatting
1 parent c66f105 commit e56047a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

clang/lib/AST/ExprConstant.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16457,7 +16457,7 @@ bool IntExprEvaluator::VisitBuiltinCallExpr(const CallExpr *E,
1645716457
unsigned HalfBits = LHS.getBitWidth() / 2;
1645816458
APSInt Mask = APSInt::getMaxValue(LHS.getBitWidth(), LHS.isUnsigned());
1645916459
Mask = Mask.trunc(HalfBits).zext(LHS.getBitWidth());
16460-
16460+
1646116461
APSInt LowerLHS = LHS & Mask;
1646216462
APSInt LowerRHS = RHS & Mask;
1646316463
return LowerRHS | (LowerLHS << HalfBits);

clang/lib/Headers/avx512bwintrin.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,8 +1613,7 @@ _mm512_kunpackd(__mmask64 __A, __mmask64 __B) {
16131613
}
16141614

16151615
static __inline__ __mmask32 __DEFAULT_FN_ATTRS_CONSTEXPR
1616-
_mm512_kunpackw (__mmask32 __A, __mmask32 __B)
1617-
{
1616+
_mm512_kunpackw(__mmask32 __A, __mmask32 __B) {
16181617
return (__mmask32) __builtin_ia32_kunpcksi ((__mmask32) __A,
16191618
(__mmask32) __B);
16201619
}

clang/lib/Headers/avx512fintrin.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8097,8 +8097,7 @@ _kortest_mask16_u8(__mmask16 __A, __mmask16 __B, unsigned char *__C) {
80978097
}
80988098

80998099
static __inline__ __mmask16 __DEFAULT_FN_ATTRS_CONSTEXPR
8100-
_mm512_kunpackb (__mmask16 __A, __mmask16 __B)
8101-
{
8100+
_mm512_kunpackb(__mmask16 __A, __mmask16 __B) {
81028101
return (__mmask16) __builtin_ia32_kunpckhi ((__mmask16) __A, (__mmask16) __B);
81038102
}
81048103

0 commit comments

Comments
 (0)