[lld] r274917 - Attempt to fix buildbots.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 8 12:59:12 PDT 2016
Author: ruiu
Date: Fri Jul 8 14:59:11 2016
New Revision: 274917
URL: http://llvm.org/viewvc/llvm-project?rev=274917&view=rev
Log:
Attempt to fix buildbots.
Modified:
lld/trunk/ELF/Symbols.h
Modified: lld/trunk/ELF/Symbols.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Symbols.h?rev=274917&r1=274916&r2=274917&view=diff
==============================================================================
--- lld/trunk/ELF/Symbols.h (original)
+++ lld/trunk/ELF/Symbols.h Fri Jul 8 14:59:11 2016
@@ -306,7 +306,7 @@ public:
// If non-null the symbol has a Thunk that may be used as an alternative
// destination for callers of this Symbol.
- Thunk<ELFT> *ThunkData;
+ Thunk<ELFT> *ThunkData = nullptr;
bool needsCopy() const { return this->NeedsCopyOrPltAddr && !this->isFunc(); }
};
More information about the llvm-commits
mailing list