[lld] r334342 - Fix build broken by r334341.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 8 17:58:05 PDT 2018
Author: ruiu
Date: Fri Jun 8 17:58:05 2018
New Revision: 334342
URL: http://llvm.org/viewvc/llvm-project?rev=334342&view=rev
Log:
Fix build broken by r334341.
Modified:
lld/trunk/ELF/InputFiles.h
Modified: lld/trunk/ELF/InputFiles.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputFiles.h?rev=334342&r1=334341&r2=334342&view=diff
==============================================================================
--- lld/trunk/ELF/InputFiles.h (original)
+++ lld/trunk/ELF/InputFiles.h Fri Jun 8 17:58:05 2018
@@ -227,8 +227,8 @@ private:
// reporting. Linker may find reasonable number of errors in a
// single object file, so we cache debugging information in order to
// parse it only once for each object file we link.
+ std::unique_ptr<llvm::DWARFContext> Dwarf;
std::vector<const llvm::DWARFDebugLine::LineTable *> LineTables;
- std::unique_ptr<llvm::DWARFDebugLine> DwarfLine;
struct VarLoc {
const llvm::DWARFDebugLine::LineTable *LT;
unsigned File;
More information about the llvm-commits
mailing list