aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CFG.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-07-17 18:04:55 +0000
committerTed Kremenek <kremenek@apple.com>2009-07-17 18:04:55 +0000
commitb6f1d782e0dc5fad138a17e6aa0ff6f9bc4788c6 (patch)
tree3f425f0591105c9e59a71c603184824ba30277f9 /lib/Analysis/CFG.cpp
parent35366a67baa970c287c714c957cf78a4131cf60d (diff)
Remove stale comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFG.cpp')
-rw-r--r--lib/Analysis/CFG.cpp8
1 files changed, 2 insertions, 6 deletions
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();