diff options
author | Nilanjana Basu <nilanjana.basu87@gmail.com> | 2019-07-17 23:43:58 +0000 |
---|---|---|
committer | Nilanjana Basu <nilanjana.basu87@gmail.com> | 2019-07-17 23:43:58 +0000 |
commit | 4e227702197ece69f9545d3c4903c8268a438459 (patch) | |
tree | c6c44f58bb1396300cdf904e7ceef8461dc236f5 /llvm/lib/DebugInfo/CodeView | |
parent | 749f556bbd146f1bf066a994e7a9a9fdc65ab6a1 (diff) | |
download | bcm5719-llvm-4e227702197ece69f9545d3c4903c8268a438459.tar.gz bcm5719-llvm-4e227702197ece69f9545d3c4903c8268a438459.zip |
Changes to display code view debug info type records in hex format
llvm-svn: 366390
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp b/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp index 8e8eba4d53e..47928c2eef6 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp @@ -306,7 +306,7 @@ Error TypeRecordMapping::visitKnownRecord(CVType &CVR, VFTableRecord &Record) { for (auto Name : Record.MethodNames) NamesLen += Name.size() + 1; } - error(IO.mapInteger(NamesLen, "")); + error(IO.mapInteger(NamesLen)); error(IO.mapVectorTail( Record.MethodNames, [](CodeViewRecordIO &IO, StringRef &S) { |