diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-04-28 06:19:35 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-04-28 06:19:35 +0000 |
commit | 3cda937d4c015ff6070f1117024621a452cfaddd (patch) | |
tree | ea343001eb5b260aa93c4a95cdcdf2e5e24986cd | |
parent | 11f98d0691312f70be40315438666dafb09c458a (diff) |
Add comment to CFGBlock suggested by Jiri Slaby.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130387 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/CFG.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Analysis/CFG.h b/include/clang/Analysis/CFG.h index 53ed705b95..ca46459afd 100644 --- a/include/clang/Analysis/CFG.h +++ b/include/clang/Analysis/CFG.h @@ -264,6 +264,8 @@ public: /// ? operator LHS expression; RHS expression /// &&, || expression that uses result of && or ||, RHS /// +/// But note that any of that may be NULL in case of optimized-out edges. +/// class CFGBlock { class ElementList { typedef BumpVector<CFGElement> ImplTy; |