diff options
author | Reid Kleckner <rnk@google.com> | 2017-07-17 20:28:06 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-07-17 20:28:06 +0000 |
commit | a842cd75e2edf3b901835d4751f5ba3897da82dc (patch) | |
tree | a116afb5c722c19f07e28efd34763b83746868c7 /llvm/unittests/DebugInfo/CodeView | |
parent | 0cf9e702bf813a571b54d5c35b793b14a66006fc (diff) | |
download | bcm5719-llvm-a842cd75e2edf3b901835d4751f5ba3897da82dc.tar.gz bcm5719-llvm-a842cd75e2edf3b901835d4751f5ba3897da82dc.zip |
[codeview] Remove TypeServerHandler and PDBTypeServerHandler
Summary:
Instead of wiring these through the CVTypeVisitor interface, clients
should inspect the CVTypeArray before visiting it and potentially load
up the type server's TPI stream if they need it.
No tests relied on this functionality because LLD was the only client.
Reviewers: ruiu
Subscribers: mgorny, hiraditya, zturner, llvm-commits
Differential Revision: https://reviews.llvm.org/D35394
llvm-svn: 308212
Diffstat (limited to 'llvm/unittests/DebugInfo/CodeView')
-rw-r--r-- | llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp b/llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp index 92134513b75..04b7bb0ba93 100644 --- a/llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp +++ b/llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp @@ -13,7 +13,6 @@ #include "llvm/DebugInfo/CodeView/TypeRecord.h" #include "llvm/DebugInfo/CodeView/TypeRecordMapping.h" #include "llvm/DebugInfo/CodeView/TypeSerializer.h" -#include "llvm/DebugInfo/CodeView/TypeServerHandler.h" #include "llvm/DebugInfo/CodeView/TypeTableBuilder.h" #include "llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h" #include "llvm/DebugInfo/PDB/Native/RawTypes.h" @@ -402,4 +401,4 @@ TEST_F(RandomAccessVisitorTest, CrossChunkName) { StringRef Name = Types.getTypeName(IndexOne); EXPECT_EQ("const FooClass", Name); -}
\ No newline at end of file +} |