File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments