diff options
author | Zachary Turner <zturner@google.com> | 2018-09-07 00:12:56 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-09-07 00:12:56 +0000 |
commit | 5d629966a970842d199ab2a8bac7e95f1ea9c08c (patch) | |
tree | 9053d017cda5081d955825b43477dbdf075e8980 /llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp | |
parent | 8ab7dd6028ed5084db849206bddc1b50987749d8 (diff) | |
download | bcm5719-llvm-5d629966a970842d199ab2a8bac7e95f1ea9c08c.tar.gz bcm5719-llvm-5d629966a970842d199ab2a8bac7e95f1ea9c08c.zip |
[PDB] Rename some files in the native reader.
By calling these NativeType<foo>.cpp, they will all be sorted
together, and it also distinguishes the types from the symbols.
llvm-svn: 341609
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp b/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp index 1601b35aa7f..c9703233bd4 100644 --- a/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp @@ -13,11 +13,11 @@ #include "llvm/DebugInfo/CodeView/TypeIndex.h" #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h" #include "llvm/DebugInfo/PDB/IPDBSourceFile.h" -#include "llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h" #include "llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h" -#include "llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h" #include "llvm/DebugInfo/PDB/Native/NativeEnumTypes.h" #include "llvm/DebugInfo/PDB/Native/NativeExeSymbol.h" +#include "llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h" +#include "llvm/DebugInfo/PDB/Native/NativeTypeEnum.h" #include "llvm/DebugInfo/PDB/Native/PDBFile.h" #include "llvm/DebugInfo/PDB/Native/RawError.h" #include "llvm/DebugInfo/PDB/Native/SymbolCache.h" |