projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
827f4eb
)
Explain why LLVM is emitting a DW_AT_containing_type inside of a class.
author
Adrian Prantl
<aprantl@apple.com>
Fri, 19 Dec 2014 00:01:20 +0000
(
00:01
+0000)
committer
Adrian Prantl
<aprantl@apple.com>
Fri, 19 Dec 2014 00:01:20 +0000
(
00:01
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224555
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/AsmPrinter/DwarfUnit.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
b/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
index
b616e54
..
7606a61
100644
(file)
--- a/
lib/CodeGen/AsmPrinter/DwarfUnit.cpp
+++ b/
lib/CodeGen/AsmPrinter/DwarfUnit.cpp
@@
-1118,6
+1118,8
@@
void DwarfUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) {
if (CTy.isAppleBlockExtension())
addFlag(Buffer, dwarf::DW_AT_APPLE_block);
+ // This is outside the DWARF spec, but GDB expects a DW_AT_containing_type
+ // inside C++ composite types to point to the base class with the vtable.
DICompositeType ContainingType(resolve(CTy.getContainingType()));
if (ContainingType)
addDIEEntry(Buffer, dwarf::DW_AT_containing_type,