diff options
author | Adrian McCarthy <amccarth@google.com> | 2017-03-23 17:18:50 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2017-03-23 17:18:50 +0000 |
commit | 3c0328e01127a573c7b1ec81f926f81191e3e93d (patch) | |
tree | 15d1709412b9dc6619d628b54bd972a403e05440 /llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp | |
parent | e4e5a2b13e4f56422f7f446baf75a41db3dc1add (diff) | |
download | llvm-3c0328e01127a573c7b1ec81f926f81191e3e93d.zip llvm-3c0328e01127a573c7b1ec81f926f81191e3e93d.tar.gz llvm-3c0328e01127a573c7b1ec81f926f81191e3e93d.tar.bz2 |
Somehow this still breaks because of ANSI color codes in test output on Linux.
Reverting until I can figure out the root cause.
Revert "Re-land: Make NativeExeSymbol a concrete subclass of NativeRawSymbol [PDB]"
This reverts commit f461a70cc376f0f91c8b4917be79479cc86330a5.
llvm-svn: 298626
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 3a83a32..d49e61f 100644 --- a/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp @@ -13,7 +13,7 @@ #include "llvm/DebugInfo/PDB/GenericError.h" #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h" #include "llvm/DebugInfo/PDB/IPDBSourceFile.h" -#include "llvm/DebugInfo/PDB/Native/NativeExeSymbol.h" +#include "llvm/DebugInfo/PDB/Native/NativeRawSymbol.h" #include "llvm/DebugInfo/PDB/Native/PDBFile.h" #include "llvm/DebugInfo/PDB/Native/RawError.h" #include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h" @@ -71,7 +71,7 @@ uint64_t NativeSession::getLoadAddress() const { return 0; } void NativeSession::setLoadAddress(uint64_t Address) {} std::unique_ptr<PDBSymbolExe> NativeSession::getGlobalScope() { - auto RawSymbol = llvm::make_unique<NativeExeSymbol>(*this); + auto RawSymbol = llvm::make_unique<NativeRawSymbol>(*this); auto PdbSymbol(PDBSymbol::create(*this, std::move(RawSymbol))); std::unique_ptr<PDBSymbolExe> ExeSymbol( static_cast<PDBSymbolExe *>(PdbSymbol.release())); |