From 4e950647fb56f4ed019cfb2c12ce62bbdf002cf9 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Thu, 15 Jun 2017 23:56:19 +0000 Subject: [llvm-pdbutil] Add support for dumping lines and inlinee lines. llvm-svn: 305529 --- llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp') diff --git a/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp b/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp index 1ddad45..4186f2e 100644 --- a/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp @@ -30,15 +30,6 @@ ModuleDebugStreamRef::ModuleDebugStreamRef( std::unique_ptr Stream) : Mod(Module), Stream(std::move(Stream)) {} -ModuleDebugStreamRef::ModuleDebugStreamRef(ModuleDebugStreamRef &&Other) - : Mod(Other.Mod), Signature(Other.Signature), - Stream(std::move(Other.Stream)), - SymbolsSubstream(std::move(Other.SymbolsSubstream)), - C11LinesSubstream(std::move(Other.C11LinesSubstream)), - C13LinesSubstream(std::move(Other.C13LinesSubstream)), - GlobalRefsSubstream(std::move(Other.GlobalRefsSubstream)), - Subsections(std::move(Other.Subsections)) {} - ModuleDebugStreamRef::~ModuleDebugStreamRef() = default; Error ModuleDebugStreamRef::reload() { -- cgit v1.1