diff options
author | Zachary Turner <zturner@google.com> | 2017-11-30 18:39:50 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-11-30 18:39:50 +0000 |
commit | ca6dbf1440e66f8a726cda3797c5e61b2376ec8d (patch) | |
tree | 8f595756bf7d8d238776ace8e7cd57fdf1253486 /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | |
parent | 23e70e6f577ac3c22c486dbe49d99f115e241956 (diff) | |
download | bcm5719-llvm-ca6dbf1440e66f8a726cda3797c5e61b2376ec8d.tar.gz bcm5719-llvm-ca6dbf1440e66f8a726cda3797c5e61b2376ec8d.zip |
Split TypeTableBuilder into two classes.
llvm-svn: 319456
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h index 9eff4a7fd81..663b9b50c9d 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h @@ -23,8 +23,8 @@ #include "llvm/ADT/SetVector.h" #include "llvm/ADT/SmallVector.h" #include "llvm/DebugInfo/CodeView/CodeView.h" +#include "llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h" #include "llvm/DebugInfo/CodeView/TypeIndex.h" -#include "llvm/DebugInfo/CodeView/TypeTableBuilder.h" #include "llvm/IR/DebugLoc.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/Compiler.h" @@ -52,7 +52,7 @@ class MachineFunction; class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase { MCStreamer &OS; BumpPtrAllocator Allocator; - codeview::TypeTableBuilder TypeTable; + codeview::MergingTypeTableBuilder TypeTable; /// Represents the most general definition range. struct LocalVarDefRange { |