diff options
author | Devang Patel <dpatel@apple.com> | 2010-04-15 00:02:49 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-04-15 00:02:49 +0000 |
commit | f8a2e01fc7b1c08f14c08a0562e501f5043ac699 (patch) | |
tree | 3946476fc3a2a8d281731cc9ab3dd7580aacb7c1 /lib/CodeGen | |
parent | d33402629e7d2758bf0b04d9c2bde74d5fc57363 (diff) | |
download | external_llvm-f8a2e01fc7b1c08f14c08a0562e501f5043ac699.tar.gz external_llvm-f8a2e01fc7b1c08f14c08a0562e501f5043ac699.tar.bz2 external_llvm-f8a2e01fc7b1c08f14c08a0562e501f5043ac699.zip |
Add comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-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 0de20c76e1..b42232b5d1 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -173,6 +173,9 @@ class DwarfDebug { /// (at the end of the module) as DW_AT_inline. SmallPtrSet<DIE *, 4> InlinedSubprogramDIEs; + /// ContainingTypeMap - This map is used to keep track of subprogram DIEs that + /// need DW_AT_containing_type attribute. This attribute points to a DIE that + /// corresponds to the MDNode mapped with the subprogram DIE. DenseMap<DIE *, MDNode *> ContainingTypeMap; typedef SmallVector<DbgScope *, 2> ScopeVector; |