diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-07-06 14:47:32 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-07-06 14:47:32 +0000 |
commit | 024a7b6358c42aa7060bc09ad72f64130f8da981 (patch) | |
tree | c37e166d33c7b9f3a0411ab70a7cf2d450d4c0ea /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | |
parent | 73d726a6cc2e4382bee533ea2e807ed7f831c74c (diff) | |
download | bcm5719-llvm-024a7b6358c42aa7060bc09ad72f64130f8da981.tar.gz bcm5719-llvm-024a7b6358c42aa7060bc09ad72f64130f8da981.zip |
Emit CodeView type records for nested classes.
Differential Revision: http://reviews.llvm.org/D21939
llvm-svn: 274629
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. |