diff options
Diffstat (limited to 'llvm/lib/DebugInfo')
| -rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeDumper.cpp | 6 | ||||
| -rw-r--r-- | llvm/lib/DebugInfo/PDB/LLVMBuild.txt | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp b/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp index bb3859a0590..2aae7f5a84d 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp @@ -755,6 +755,12 @@ void CVTypeDumper::printTypeIndex(StringRef FieldName, TypeIndex TI) { W.printHex(FieldName, TI.getIndex()); } +bool CVTypeDumper::dump(const TypeIterator::TypeRecord &Record) { + CVTypeDumperImpl Dumper(*this, W, PrintRecordBytes); + Dumper.visitTypeRecord(Record); + return !Dumper.hadError(); +} + bool CVTypeDumper::dump(ArrayRef<uint8_t> Data) { CVTypeDumperImpl Dumper(*this, W, PrintRecordBytes); Dumper.visitTypeStream(Data); diff --git a/llvm/lib/DebugInfo/PDB/LLVMBuild.txt b/llvm/lib/DebugInfo/PDB/LLVMBuild.txt index 9ee9f4067e9..76e537a57fc 100644 --- a/llvm/lib/DebugInfo/PDB/LLVMBuild.txt +++ b/llvm/lib/DebugInfo/PDB/LLVMBuild.txt @@ -19,5 +19,5 @@ type = Library name = DebugInfoPDB parent = DebugInfo -required_libraries = Object Support +required_libraries = Object Support DebugInfoCodeView |

