Skip to content

Commit 681fdf5

Browse files
committed
clang-format
1 parent ebedb14 commit 681fdf5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

clang/lib/CIR/CodeGen/CIRGenExpr.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,8 @@ LValue CIRGenFunction::emitDeclRefLValue(const DeclRefExpr *e) {
585585
}
586586

587587
if (const auto *bd = dyn_cast<BindingDecl>(nd)) {
588-
assert(!e->refersToEnclosingVariableOrCapture() && !cir::MissingFeatures::lambdaCaptures());
588+
assert(!e->refersToEnclosingVariableOrCapture() &&
589+
!cir::MissingFeatures::lambdaCaptures());
589590
return emitLValue(bd->getBinding());
590591
}
591592

clang/lib/CIR/CodeGen/CIRGenModule.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,7 @@ void CIRGenModule::emitTopLevelDecl(Decl *decl) {
13111311
case Decl::Var:
13121312
case Decl::Decomposition: {
13131313
auto *vd = cast<VarDecl>(decl);
1314-
if(isa<DecompositionDecl>(decl)) {
1314+
if (isa<DecompositionDecl>(decl)) {
13151315
errorNYI(decl->getSourceRange(), "global variable decompositions");
13161316
break;
13171317
}

0 commit comments

Comments
 (0)