diff options
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp')
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index 9f7fae55f77..314a0138542 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -75,7 +75,14 @@ class MockSession : public IPDBSession { getSourceFileById(uint32_t SymbolId) const override { return nullptr; } - + bool addressForVA(uint64_t VA, uint32_t &Section, + uint32_t &Offset) const override { + return false; + } + bool addressForRVA(uint32_t RVA, uint32_t &Section, + uint32_t &Offset) const override { + return false; + } std::unique_ptr<PDBSymbol> findSymbolByAddress(uint64_t Address, PDB_SymType Type) const override { return nullptr; @@ -482,5 +489,4 @@ TEST_F(PDBApiTest, Dyncast) { VerifyUnknownDyncasts(); } - } // end anonymous namespace |