Remove redundant assignment.

llvm-svn: 287607
This commit is contained in:
Rui Ueyama 2016-11-22 01:36:19 +00:00
parent 2d98fead25
commit bb536fee32
1 changed files with 1 additions and 3 deletions

View File

@ -263,9 +263,7 @@ static size_t getHashSize() {
template <class ELFT>
BuildIdSection<ELFT>::BuildIdSection()
: SyntheticSection<ELFT>(SHF_ALLOC, SHT_NOTE, 1, ".note.gnu.build-id"),
HashSize(getHashSize()) {
this->Live = true;
}
HashSize(getHashSize()) {}
template <class ELFT> void BuildIdSection<ELFT>::writeTo(uint8_t *Buf) {
const endianness E = ELFT::TargetEndianness;