diff options
author | Devang Patel <dpatel@apple.com> | 2010-05-07 23:19:07 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-05-07 23:19:07 +0000 |
commit | cbe7a8508affa6e0ff4b3639142f7f063a40691d (patch) | |
tree | 76c0873aa93f795e0c2c0569a7c9d4531370b15b /llvm/lib/CodeGen | |
parent | 5597ab4076e2bbd8972c9328f79cd1ca9fea17ce (diff) | |
download | bcm5719-llvm-cbe7a8508affa6e0ff4b3639142f7f063a40691d.tar.gz bcm5719-llvm-cbe7a8508affa6e0ff4b3639142f7f063a40691d.zip |
Remove DIGlobal.
llvm-svn: 103325
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 9e5472b2f91..e319c289325 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -462,7 +462,7 @@ void DwarfDebug::addSourceLine(DIE *Die, const DIVariable *V) { /// addSourceLine - Add location information to specified debug information /// entry. -void DwarfDebug::addSourceLine(DIE *Die, const DIGlobal *G) { +void DwarfDebug::addSourceLine(DIE *Die, const DIGlobalVariable *G) { // If there is no compile unit specified, don't add a line #. if (!G->getCompileUnit().Verify()) return; diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 5915c6f66c3..f3d64070f97 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -295,7 +295,7 @@ private: /// addSourceLine - Add location information to specified debug information /// entry. void addSourceLine(DIE *Die, const DIVariable *V); - void addSourceLine(DIE *Die, const DIGlobal *G); + void addSourceLine(DIE *Die, const DIGlobalVariable *G); void addSourceLine(DIE *Die, const DISubprogram *SP); void addSourceLine(DIE *Die, const DIType *Ty); void addSourceLine(DIE *Die, const DINameSpace *NS); |