diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-07-06 19:49:51 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-07-06 19:49:51 +0000 |
commit | 820ca5404ce9b919ad9be94049298bcec81ce3fa (patch) | |
tree | b364997a30741ccd4ac7b8e22b15036c3d2b159a /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | |
parent | dcfce2d0ecb1508b9ebe32aade343e3595213bd6 (diff) | |
download | bcm5719-llvm-820ca5404ce9b919ad9be94049298bcec81ce3fa.tar.gz bcm5719-llvm-820ca5404ce9b919ad9be94049298bcec81ce3fa.zip |
Retry: "Emit CodeView type records for nested classes."
Now with a corrected test to account for a recently supported properties bit in the debug info of a struct.
Original review: http://reviews.llvm.org/D21939
This reverts commit 970c3fd497a28d25dd69526eb52594a696c37968.
llvm-svn: 274661
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h index 51dd5df1027..31da1b11fa4 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h @@ -275,7 +275,7 @@ class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase { /// Common record member lowering functionality for record types, which are /// structs, classes, and unions. Returns the field list index and the member /// count. - std::tuple<codeview::TypeIndex, codeview::TypeIndex, unsigned> + std::tuple<codeview::TypeIndex, codeview::TypeIndex, unsigned, bool> lowerRecordFieldList(const DICompositeType *Ty); /// Inserts {{Node, ClassTy}, TI} into TypeIndices and checks for duplicates. |