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 6a0ec8e commit 468c6beCopy full SHA for 468c6be
llvm/lib/Object/GOFFObjectFile.cpp
@@ -514,7 +514,7 @@ uint64_t GOFFObjectFile::getSectionAlignment(DataRefImpl Sec) const {
514
const uint8_t *EsdRecord = getSectionEdEsdRecord(Sec);
515
GOFF::ESDAlignment Pow2Alignment;
516
ESDRecord::getAlignment(EsdRecord, Pow2Alignment);
517
- return 1 << static_cast<uint64_t>(Pow2Alignment);
+ return 1ULL << static_cast<uint64_t>(Pow2Alignment);
518
}
519
520
bool GOFFObjectFile::isSectionText(DataRefImpl Sec) const {
0 commit comments