]> granicus.if.org Git - clang/commitdiff
Remove stale comments.
authorTed Kremenek <kremenek@apple.com>
Fri, 17 Jul 2009 18:04:55 +0000 (18:04 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 17 Jul 2009 18:04:55 +0000 (18:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76196 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFG.cpp

index 7ad688fd68d98220e19bc54231bb62316e0e374c..b445acf70f2409cd31f1cc99d39b7c3ab2160152 100644 (file)
@@ -597,9 +597,7 @@ CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
       return 0;
   }
 
-  // Process the false branch.  NULL out Block so that the recursive call to
-  // Visit will create a new basic block.
-  // Null out Block so that all successor
+  // Process the false branch.
   CFGBlock* ElseBlock = Succ;
 
   if (Stmt* Else = I->getElse()) {
@@ -618,9 +616,7 @@ CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
     }
   }
 
-  // Process the true branch.  NULL out Block so that the recursive call to
-  // Visit will create a new basic block.
-  // Null out Block so that all successor
+  // Process the true branch.
   CFGBlock* ThenBlock;
   {
     Stmt* Then = I->getThen();