diff options
author | Brock Wyma <brock.wyma@intel.com> | 2018-05-14 21:21:22 +0000 |
---|---|---|
committer | Brock Wyma <brock.wyma@intel.com> | 2018-05-14 21:21:22 +0000 |
commit | 3db2b108c337b0900a1d519f1d3546f437812e51 (patch) | |
tree | bbb5022047924171a8272fe8b28c1d4090297382 /llvm/lib/CodeGen/AsmPrinter | |
parent | 4c8a67a2293105d4e4b0dadeebbab21b819049c5 (diff) | |
download | bcm5719-llvm-3db2b108c337b0900a1d519f1d3546f437812e51.tar.gz bcm5719-llvm-3db2b108c337b0900a1d519f1d3546f437812e51.zip |
[CodeView] Improve debugging of virtual base class member variables
Initial support for passing the virtual base pointer offset to CodeViewDebug.
https://reviews.llvm.org/D46271
llvm-svn: 332296
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index 0af3d1521eb..ef279417b7e 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -2099,8 +2099,7 @@ CodeViewDebug::lowerRecordFieldList(const DICompositeType *Ty) { for (const DIDerivedType *I : Info.Inheritance) { if (I->getFlags() & DINode::FlagVirtual) { // Virtual base. - // FIXME: Emit VBPtrOffset when the frontend provides it. - unsigned VBPtrOffset = 0; + unsigned VBPtrOffset = I->getVBPtrOffset(); // FIXME: Despite the accessor name, the offset is really in bytes. unsigned VBTableIndex = I->getOffsetInBits() / 4; auto RecordKind = (I->getFlags() & DINode::FlagIndirectVirtualBase) == DINode::FlagIndirectVirtualBase |