Skip to content

Commit e081ff8

Browse files
committed
Clang-format
1 parent a64af80 commit e081ff8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

clang/lib/AST/ByteCode/InterpBuiltin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3817,7 +3817,7 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC, const CallExpr *Call,
38173817
case X86::BI__builtin_ia32_psignd256:
38183818
return interp__builtin_elementwise_int_binop(
38193819
S, OpPC, Call, [](const APInt &AElem, const APInt &BElem) {
3820-
if (BElem.isZero())
3820+
if (BElem.isZero())
38213821
return APInt::getZero(AElem.getBitWidth());
38223822
if (BElem.isNegative())
38233823
return -AElem;

clang/lib/AST/ExprConstant.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12318,14 +12318,14 @@ bool VectorExprEvaluator::VisitCallExpr(const CallExpr *E) {
1231812318
case X86::BI__builtin_ia32_psignw256:
1231912319
case X86::BI__builtin_ia32_psignd128:
1232012320
case X86::BI__builtin_ia32_psignd256:
12321-
return EvaluateBinOpExpr([](const APInt &AElem,
12322-
const APInt &BElem) -> APInt {
12323-
if (BElem.isZero())
12321+
return EvaluateBinOpExpr(
12322+
[](const APInt &AElem, const APInt &BElem) -> APInt {
12323+
if (BElem.isZero())
1232412324
return APInt::getZero(AElem.getBitWidth());
1232512325
if (BElem.isNegative())
1232612326
return -AElem;
1232712327
return AElem;
12328-
});
12328+
});
1232912329

1233012330
case X86::BI__builtin_ia32_blendvpd:
1233112331
case X86::BI__builtin_ia32_blendvpd256:

0 commit comments

Comments
 (0)