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 c84a936 commit 79daad3Copy full SHA for 79daad3
llvm/lib/Object/COFFObjectFile.cpp
@@ -2012,7 +2012,7 @@ bool Arm64XRelocRef::operator==(const Arm64XRelocRef &Other) const {
2012
uint8_t Arm64XRelocRef::getEntrySize() const {
2013
switch (getType()) {
2014
case COFF::IMAGE_DVRT_ARM64X_FIXUP_TYPE_VALUE:
2015
- return (1u << getArg()) / sizeof(uint16_t) + 1;
+ return (1ull << getArg()) / sizeof(uint16_t) + 1;
2016
case COFF::IMAGE_DVRT_ARM64X_FIXUP_TYPE_DELTA:
2017
return 2;
2018
default:
0 commit comments