[cfe-commits] r76644 - /cfe/trunk/include/clang/Analysis/CFG.h
Ted Kremenek
kremenek at apple.com
Tue Jul 21 14:09:32 PDT 2009
Author: kremenek
Date: Tue Jul 21 16:09:31 2009
New Revision: 76644
URL: http://llvm.org/viewvc/llvm-project?rev=76644&view=rev
Log:
Update stale comment.
Modified:
cfe/trunk/include/clang/Analysis/CFG.h
Modified: cfe/trunk/include/clang/Analysis/CFG.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/CFG.h?rev=76644&r1=76643&r2=76644&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/CFG.h (original)
+++ cfe/trunk/include/clang/Analysis/CFG.h Tue Jul 21 16:09:31 2009
@@ -217,9 +217,8 @@
/// entry block has no predecessors and contains no statements.
void setEntry(CFGBlock *B) { Entry = B; }
- /// setExit - Set the exit block of the CFG. This is typically used
- /// only during CFG construction. Most CFG clients expect that the
- /// exit block has no successors and contains no statements.
+ /// setIndirectGotoBlock - Set the block used for indirect goto jumps.
+ /// This is typically used only during CFG construction.
void setIndirectGotoBlock(CFGBlock* B) { IndirectGotoBlock = B; }
//===--------------------------------------------------------------------===//
More information about the cfe-commits
mailing list