diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-10-06 22:28:19 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-10-06 22:28:19 +0000 |
commit | d8e0bfe07a7d101eeed7204d1dfcaae17ad51908 (patch) | |
tree | 2c906a713dc81e71135348355099e2c7c27d237e /lib/MC/ELFObjectWriter.cpp | |
parent | 9875903799e292c3972a247675c8ad4ea2212b05 (diff) |
Another case of 256 sections not being enough :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/ELFObjectWriter.cpp')
-rw-r--r-- | lib/MC/ELFObjectWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/ELFObjectWriter.cpp b/lib/MC/ELFObjectWriter.cpp index fb0518b2ec..8a8d68e55a 100644 --- a/lib/MC/ELFObjectWriter.cpp +++ b/lib/MC/ELFObjectWriter.cpp @@ -1128,7 +1128,7 @@ void ELFObjectWriterImpl::WriteObject(MCAssembler &Asm, // ... then all of the sections ... DenseMap<const MCSection*, uint64_t> SectionOffsetMap; - DenseMap<const MCSection*, uint8_t> SectionIndexMap; + DenseMap<const MCSection*, uint32_t> SectionIndexMap; unsigned Index = 1; for (MCAssembler::const_iterator it = Asm.begin(), |