]> granicus.if.org Git - clang/commitdiff
Fix some comments.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 12 Aug 2011 18:44:32 +0000 (18:44 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 12 Aug 2011 18:44:32 +0000 (18:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137491 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaDecl.cpp

index ff313932b26bd664f9eb7d296e95e5cc2e823ab0..b67c3d3e952f5fe29692b3664f2ccde23c7fea6c 100644 (file)
@@ -4371,11 +4371,10 @@ Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
 
       isVirtualOkay = true;
     } else if (DC->isRecord()) {
-      // If the of the function is the same as the name of the record, then this
-      // must be an invalid constructor that has a return type.
+      // If the name of the function is the same as the name of the record,
+      // then this must be an invalid constructor that has a return type.
       // (The parser checks for a return type and makes the declarator a
       // constructor if it has no return type).
-      // must have an invalid constructor that has a return type
       if (Name.getAsIdentifierInfo() &&
           Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
         Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
@@ -6590,8 +6589,7 @@ Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
     
-    // Verify that that gotos and switch cases don't jump into scopes illegally.
-    // Verify that that gotos and switch cases don't jump into scopes illegally.
+    // Verify that gotos and switch cases don't jump into scopes illegally.
     if (getCurFunction()->NeedsScopeChecking() &&
         !dcl->isInvalidDecl() &&
         !hasAnyUnrecoverableErrorsInThisFunction())