diff options
author | Devang Patel <dpatel@apple.com> | 2010-03-25 15:09:44 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-03-25 15:09:44 +0000 |
commit | 2ddefecfa063b99550bd1fc9fd53efe433be54fb (patch) | |
tree | f3c208ec5b5d014b29ae13ad77d5439396e4e43c /lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 52c02866ba6d40dd6616e673d96b5c0e401fc557 (diff) |
Add comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index 6004bb3510..d173f322b6 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -141,6 +141,9 @@ class DwarfDebug : public DwarfPrinter { /// AbstractScopes - Tracks the abstract scopes a module. These scopes are /// not included DbgScopeMap. AbstractScopes owns its DbgScope*s. DenseMap<MDNode *, DbgScope *> AbstractScopes; + + /// AbstractScopesList - Tracks abstract scopes constructed while processing + /// a function. This list is cleared during endFunction(). SmallVector<DbgScope *, 4>AbstractScopesList; /// AbstractVariables - Collection on abstract variables. Owned by the |