diff options
author | Rui Ueyama <ruiu@google.com> | 2016-07-08 19:59:11 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-07-08 19:59:11 +0000 |
commit | 8c8db476f19d228f5c630a664aa79f1bb3492c29 (patch) | |
tree | 82177fdcb9e70ebdb80b28c1630e5ceec4eb5bdf | |
parent | 28410c684658089852d6f1708fdba5567aa5e299 (diff) | |
download | bcm5719-llvm-8c8db476f19d228f5c630a664aa79f1bb3492c29.tar.gz bcm5719-llvm-8c8db476f19d228f5c630a664aa79f1bb3492c29.zip |
Attempt to fix buildbots.
llvm-svn: 274917
-rw-r--r-- | lld/ELF/Symbols.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Symbols.h b/lld/ELF/Symbols.h index 1acaae432b4..fff22f69715 100644 --- a/lld/ELF/Symbols.h +++ b/lld/ELF/Symbols.h @@ -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(); } }; |