Skip to content

Commit

Permalink
[clang][Interp][NFC] Tiny indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaederr committed Sep 9, 2023
1 parent 38c7230 commit 211f7dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clang/lib/AST/Interp/ByteCodeExprGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ bool ByteCodeExprGen<Emitter>::VisitCastExpr(const CastExpr *CE) {

case CK_IntegralToBoolean:
case CK_IntegralCast: {
if (DiscardResult)
return this->discard(SubExpr);
if (DiscardResult)
return this->discard(SubExpr);
std::optional<PrimType> FromT = classify(SubExpr->getType());
std::optional<PrimType> ToT = classify(CE->getType());
if (!FromT || !ToT)
Expand Down

0 comments on commit 211f7dd

Please sign in to comment.