aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-07-21 21:09:31 +0000
committerTed Kremenek <kremenek@apple.com>2009-07-21 21:09:31 +0000
commite38158de9236dfcded7da56126134e5e3e49cb01 (patch)
tree0ae02db849d1d92a7663eb898546aadb4118487a
parentd46aa50622a298f66fba30f3f1b7682ff2ece013 (diff)
Update stale comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76644 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/CFG.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/clang/Analysis/CFG.h b/include/clang/Analysis/CFG.h
index 9e7446dc65..90b6cdc08d 100644
--- a/include/clang/Analysis/CFG.h
+++ b/include/clang/Analysis/CFG.h
@@ -217,9 +217,8 @@ public:
/// 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; }
//===--------------------------------------------------------------------===//