[cfe-commits] r76196 - /cfe/trunk/lib/Analysis/CFG.cpp
Ted Kremenek
kremenek at apple.com
Fri Jul 17 11:04:56 PDT 2009
Author: kremenek
Date: Fri Jul 17 13:04:55 2009
New Revision: 76196
URL: http://llvm.org/viewvc/llvm-project?rev=76196&view=rev
Log:
Remove stale comments.
Modified:
cfe/trunk/lib/Analysis/CFG.cpp
Modified: cfe/trunk/lib/Analysis/CFG.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFG.cpp?rev=76196&r1=76195&r2=76196&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CFG.cpp (original)
+++ cfe/trunk/lib/Analysis/CFG.cpp Fri Jul 17 13:04:55 2009
@@ -597,9 +597,7 @@
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 @@
}
}
- // 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();
More information about the cfe-commits
mailing list