File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -328,8 +328,8 @@ mlir::LogicalResult CIRGenFunction::buildLabelStmt(const clang::LabelStmt &S) {
328
328
// IsEHa: not implemented.
329
329
assert (!(getContext ().getLangOpts ().EHAsynch && S.isSideEntry ()));
330
330
331
- // TODO: After support case stmt crossing scopes, we should build LabelStmt
332
- // and clean LexicalScope::IsInsideCaseNoneStmt.
331
+ // TODO(cir) : After support case stmt crossing scopes, we should build
332
+ // LabelStmt and clean LexicalScope::IsInsideCaseNoneStmt.
333
333
for (auto *lexScope = currLexScope; lexScope;
334
334
lexScope = lexScope->getParentScope ()) {
335
335
assert (!lexScope->IsInsideCaseNoneStmt &&
@@ -467,8 +467,8 @@ mlir::LogicalResult CIRGenFunction::buildReturnStmt(const ReturnStmt &S) {
467
467
assert (!UnimplementedFeature::requiresReturnValueCheck ());
468
468
auto loc = getLoc (S.getSourceRange ());
469
469
470
- // TODO: Rewrite the logic to handle ReturnStmt inside SwitchStmt, then
471
- // clean up the code below.
470
+ // TODO(cir) : Rewrite the logic to handle ReturnStmt inside SwitchStmt, then
471
+ // clean up the code below.
472
472
if (currLexScope->IsInsideCaseNoneStmt )
473
473
return mlir::success ();
474
474
You can’t perform that action at this time.
0 commit comments