diff options
author | Adrian Prantl <aprantl@apple.com> | 2017-06-01 18:18:23 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2017-06-01 18:18:23 +0000 |
commit | f4bc1f77b78481a01e6a2339a83cb25d2c261390 (patch) | |
tree | 280c194169d1e6845802f031d276f319e05292df /llvm/lib/DebugInfo/PDB | |
parent | fb9662ae71a2d9d5787229513a2aa78ee6299b93 (diff) | |
download | bcm5719-llvm-f4bc1f77b78481a01e6a2339a83cb25d2c261390.tar.gz bcm5719-llvm-f4bc1f77b78481a01e6a2339a83cb25d2c261390.zip |
[DWARF] Introduce Dump Options
This commit introduces a structure that holds all the flags that
control the pretty printing of dwarf output.
Patch by Spyridoula Gravani!
Differential Revision: https://reviews.llvm.org/D33749
llvm-svn: 304446
Diffstat (limited to 'llvm/lib/DebugInfo/PDB')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/PDBContext.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/PDBContext.cpp b/llvm/lib/DebugInfo/PDB/PDBContext.cpp index 94b81ecf561..f6b6b951ebe 100644 --- a/llvm/lib/DebugInfo/PDB/PDBContext.cpp +++ b/llvm/lib/DebugInfo/PDB/PDBContext.cpp @@ -29,8 +29,7 @@ PDBContext::PDBContext(const COFFObjectFile &Object, Session->setLoadAddress(ImageBase.get()); } -void PDBContext::dump(raw_ostream &OS, DIDumpType DumpType, bool DumpEH, - bool SummarizeTypes) {} +void PDBContext::dump(raw_ostream &OS, DIDumpOptions DumpOpts){} DILineInfo PDBContext::getLineInfoForAddress(uint64_t Address, DILineInfoSpecifier Specifier) { |