diff options
author | Rui Ueyama <ruiu@google.com> | 2015-09-24 19:00:42 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2015-09-24 19:00:42 +0000 |
commit | c28a08b8d2dc948d47e47b87b18e47e380782309 (patch) | |
tree | 5088a40c07a8707db747e23ab4489feb1cbc0da5 | |
parent | 1392d8b5fe2afe02988d818e052d4b84f21cc004 (diff) | |
download | bcm5719-llvm-c28a08b8d2dc948d47e47b87b18e47e380782309.tar.gz bcm5719-llvm-c28a08b8d2dc948d47e47b87b18e47e380782309.zip |
COFF: Remove duplicate parameter from hash value calculation.
llvm-svn: 248526
-rw-r--r-- | lld/COFF/ICF.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lld/COFF/ICF.cpp b/lld/COFF/ICF.cpp index 5df3d5d0693..8b17a4c8b29 100644 --- a/lld/COFF/ICF.cpp +++ b/lld/COFF/ICF.cpp @@ -86,7 +86,6 @@ uint64_t ICF::getHash(SectionChunk *C) { hash_value(C->SectionName), C->NumRelocs, uint32_t(C->Header->SizeOfRawData), - uint32_t(C->Header->SizeOfRawData), C->Checksum); } |