From: Ted Kremenek Date: Fri, 17 Jul 2009 18:04:55 +0000 (+0000) Subject: Remove stale comments. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6f1d782e0dc5fad138a17e6aa0ff6f9bc4788c6;p=clang Remove stale comments. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76196 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFG.cpp b/lib/Analysis/CFG.cpp index 7ad688fd68..b445acf70f 100644 --- a/lib/Analysis/CFG.cpp +++ b/lib/Analysis/CFG.cpp @@ -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();