COFF: Remove unused field SectionChunk::SectionIndex.
llvm-svn: 240512
diff --git a/lld/COFF/Chunks.cpp b/lld/COFF/Chunks.cpp
index b931d11..10d18c1 100644
--- a/lld/COFF/Chunks.cpp
+++ b/lld/COFF/Chunks.cpp
@@ -26,8 +26,8 @@
namespace lld {
namespace coff {
-SectionChunk::SectionChunk(ObjectFile *F, const coff_section *H, uint32_t SI)
- : File(F), Header(H), SectionIndex(SI) {
+SectionChunk::SectionChunk(ObjectFile *F, const coff_section *H)
+ : File(F), Header(H) {
// Initialize SectionName.
File->getCOFFObj()->getSectionName(Header, SectionName);