mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Fixing an MSVC conversion warning about implicitly converting the shift results to 64-bits. No functional change intended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213515 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
43b125912e
commit
bb9fd2cbd4
@ -90,7 +90,7 @@ void RuntimeDyldMachO::makeValueAddendPCRel(RelocationValueRef &Value,
|
||||
uint64_t RelocAddr = 0;
|
||||
RI->getAddress(RelocAddr);
|
||||
unsigned RelocSize = Obj.getAnyRelocationLength(RelInfo);
|
||||
Value.Addend += RelocAddr + (1 << RelocSize);
|
||||
Value.Addend += RelocAddr + (1ULL << RelocSize);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user