diff options
author | Zachary Turner <zturner@google.com> | 2017-05-31 04:17:13 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-31 04:17:13 +0000 |
commit | 1b88f4f33a7edc374b272e7cfa559a01505dfba1 (patch) | |
tree | d907fc94973f5a89ae5bfaad7e5e5a2d318fc1f0 /llvm/tools/llvm-pdbdump/PdbYaml.cpp | |
parent | 2bc782d8da4d9e233717cc3702f6b0c07d2b7ec4 (diff) | |
download | bcm5719-llvm-1b88f4f33a7edc374b272e7cfa559a01505dfba1.tar.gz bcm5719-llvm-1b88f4f33a7edc374b272e7cfa559a01505dfba1.zip |
[ObjectYAML] Split CodeViewYAML into 3 pieces.
The code was a mess and disorganized due to the sheer amount
of it being in one file. So I'm splitting this into three files.
One for CodeView types, one for CodeView symbols, and one for
CodeView debug subsections. NFC.
llvm-svn: 304278
Diffstat (limited to 'llvm/tools/llvm-pdbdump/PdbYaml.cpp')
-rw-r--r-- | llvm/tools/llvm-pdbdump/PdbYaml.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-pdbdump/PdbYaml.cpp b/llvm/tools/llvm-pdbdump/PdbYaml.cpp index 2cea0f5803d..e288063e2af 100644 --- a/llvm/tools/llvm-pdbdump/PdbYaml.cpp +++ b/llvm/tools/llvm-pdbdump/PdbYaml.cpp @@ -21,6 +21,7 @@ #include "llvm/DebugInfo/PDB/Native/TpiHashing.h" #include "llvm/DebugInfo/PDB/PDBExtras.h" #include "llvm/DebugInfo/PDB/PDBTypes.h" +#include "llvm/ObjectYAML/CodeViewYAMLTypes.h" using namespace llvm; using namespace llvm::pdb; |