From e38158de9236dfcded7da56126134e5e3e49cb01 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 21 Jul 2009 21:09:31 +0000 Subject: [PATCH] Update stale comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76644 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/CFG.h | 5 ++--- 1 file 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; } //===--------------------------------------------------------------------===// -- 2.40.0