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) {
585
585
}
586
586
587
587
if (const auto *bd = dyn_cast<BindingDecl>(nd)) {
588
- assert (!e->refersToEnclosingVariableOrCapture () && !cir::MissingFeatures::lambdaCaptures ());
588
+ assert (!e->refersToEnclosingVariableOrCapture () &&
589
+ !cir::MissingFeatures::lambdaCaptures ());
589
590
return emitLValue (bd->getBinding ());
590
591
}
591
592
Original file line number Diff line number Diff line change @@ -1311,7 +1311,7 @@ void CIRGenModule::emitTopLevelDecl(Decl *decl) {
1311
1311
case Decl::Var:
1312
1312
case Decl::Decomposition: {
1313
1313
auto *vd = cast<VarDecl>(decl);
1314
- if (isa<DecompositionDecl>(decl)) {
1314
+ if (isa<DecompositionDecl>(decl)) {
1315
1315
errorNYI (decl->getSourceRange (), " global variable decompositions" );
1316
1316
break ;
1317
1317
}
You can’t perform that action at this time.
0 commit comments