diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-06-29 16:04:14 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-06-29 16:04:14 +0000 |
commit | 6e7e6b646b8b2a4337afce5a3255ff56cf1ef240 (patch) | |
tree | 30f7883e486fb2e5939027b3801489e91596d9e8 /llvm/lib/CodeGen | |
parent | 92afdb6c31b5dc14a45caf697c06f91b67a75fa9 (diff) | |
download | bcm5719-llvm-6e7e6b646b8b2a4337afce5a3255ff56cf1ef240.tar.gz bcm5719-llvm-6e7e6b646b8b2a4337afce5a3255ff56cf1ef240.zip |
Cleanup in DwarfDebug - fix a typo and remove two unused functions
llvm-svn: 159433
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 7c84c2479b6..d1d65126550 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -235,7 +235,7 @@ class DwarfDebug { /// ScopeVariables - Collection of dbg variables of a scope. DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> > ScopeVariables; - /// AbstractVariables - Collection on abstract variables. + /// AbstractVariables - Collection of abstract variables. DenseMap<const MDNode *, DbgVariable *> AbstractVariables; /// DotDebugLocEntries - Collection of DotDebugLocEntry. @@ -333,9 +333,6 @@ private: /// of the function. DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope); - /// constructVariableDIE - Construct a DIE for the given DbgVariable. - DIE *constructVariableDIE(DbgVariable *DV, LexicalScope *S); - /// constructScopeDIE - Construct a DIE for this scope. DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope); @@ -517,9 +514,6 @@ public: /// in the SourceIds map. unsigned GetOrCreateSourceID(StringRef DirName, StringRef FullName); - /// createSubprogramDIE - Create new DIE using SP. - DIE *createSubprogramDIE(DISubprogram SP); - /// getStringPool - returns the entry into the start of the pool. MCSymbol *getStringPool(); |