diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-17 18:04:55 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-17 18:04:55 +0000 |
commit | 0bcdc981efe914a66dda4e7af4908ee3303ed320 (patch) | |
tree | 46fe4447a188046f3bec774489ad9a09ab76631a /clang/lib/Analysis/CFG.cpp | |
parent | 0cded73755766aa4087c6b9f9b9ea2de8ea01424 (diff) | |
download | bcm5719-llvm-0bcdc981efe914a66dda4e7af4908ee3303ed320.tar.gz bcm5719-llvm-0bcdc981efe914a66dda4e7af4908ee3303ed320.zip |
Remove stale comments.
llvm-svn: 76196
Diffstat (limited to 'clang/lib/Analysis/CFG.cpp')
-rw-r--r-- | clang/lib/Analysis/CFG.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/clang/lib/Analysis/CFG.cpp b/clang/lib/Analysis/CFG.cpp index 7ad688fd68d..b445acf70f2 100644 --- a/clang/lib/Analysis/CFG.cpp +++ b/clang/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(); |