We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade2ccc commit eac2e6aCopy full SHA for eac2e6a
llvm/lib/Object/MachOObjectFile.cpp
@@ -2005,7 +2005,8 @@ MachOObjectFile::getSectionContents(DataRefImpl Sec) const {
2005
getStruct<MachO::section_64>(*this, Sections[SectIdx]);
2006
uint64_t CurrTrueOffset = (uint64_t)CurrSect.offset + SectOffsetAdjust;
2007
if ((SectOffsetAdjust > 0) && (PrevTrueOffset > CurrTrueOffset))
2008
- return malformedError("section data exceeds 4GB and are not ordered");
+ return malformedError("section data exceeds 4GB and section file "
2009
+ "offsets are not ordered");
2010
const uint64_t EndSectFileOffset =
2011
(uint64_t)CurrSect.offset + CurrSect.size;
2012
if (EndSectFileOffset > UINT32_MAX)
0 commit comments