]> granicus.if.org Git - clang/commitdiff
Update stale comment.
authorTed Kremenek <kremenek@apple.com>
Tue, 21 Jul 2009 21:09:31 +0000 (21:09 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 21 Jul 2009 21:09:31 +0000 (21:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76644 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/CFG.h

index 9e7446dc6506887f61f5443fae193ed1c7f1519b..90b6cdc08dcf6948aecff8630fde2a265d514bbc 100644 (file)
@@ -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; }
   
   //===--------------------------------------------------------------------===//