diff options
author | Zachary Turner <zturner@google.com> | 2016-11-08 22:24:53 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-11-08 22:24:53 +0000 |
commit | 4efa0a4201c5df01817895f476dfac71b3064acc (patch) | |
tree | cd4c78a2b08baa8a3285c30d5a061e4a6acdbee3 /llvm/lib/DebugInfo/CodeView/CMakeLists.txt | |
parent | cb3c9f6c749c6ec76b328c2a405b79430868ef23 (diff) | |
download | bcm5719-llvm-4efa0a4201c5df01817895f476dfac71b3064acc.tar.gz bcm5719-llvm-4efa0a4201c5df01817895f476dfac71b3064acc.zip |
[CodeView] Hook up CodeViewRecordIO to type serialization path.
Previously support had been added for using CodeViewRecordIO
to read (deserialize) CodeView type records. This patch adds
support for writing those same records. With this patch,
reading and writing of CodeView type records finally uses a single
codepath.
Differential Revision: https://reviews.llvm.org/D26253
llvm-svn: 286304
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/CMakeLists.txt')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/CMakeLists.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/CMakeLists.txt b/llvm/lib/DebugInfo/CodeView/CMakeLists.txt index 4bbc48d111f..12675c3c631 100644 --- a/llvm/lib/DebugInfo/CodeView/CMakeLists.txt +++ b/llvm/lib/DebugInfo/CodeView/CMakeLists.txt @@ -4,21 +4,16 @@ add_llvm_library(LLVMDebugInfoCodeView CVSymbolVisitor.cpp CVTypeVisitor.cpp EnumTables.cpp - FieldListRecordBuilder.cpp Line.cpp - ListRecordBuilder.cpp - MemoryTypeTableBuilder.cpp - MethodListRecordBuilder.cpp ModuleSubstream.cpp ModuleSubstreamVisitor.cpp RecordSerialization.cpp SymbolDumper.cpp TypeDumper.cpp TypeRecord.cpp - TypeRecordBuilder.cpp TypeRecordMapping.cpp + TypeSerializer.cpp TypeStreamMerger.cpp - TypeTableBuilder.cpp ADDITIONAL_HEADER_DIRS ${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/CodeView |