mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
[lld-macho] Fix left shift of negative value UB
I introduced this mistake in 573c7e6b3c
.
Fixes the failure on this UBSan bot:
https://lab.llvm.org/buildbot/#/builders/5/builds/25537
This commit is contained in:
parent
3a4d9b6a68
commit
73b659ff55
@ -264,7 +264,7 @@ static void writeAdr(void *loc, uint32_t dest, int32_t delta) {
|
||||
static void writeNop(void *loc) { write32le(loc, 0xd503201f); }
|
||||
|
||||
static void writeLiteralLdr(void *loc, Ldr original, int32_t delta) {
|
||||
uint32_t imm19 = (delta << 3) & 0x00ffffe0;
|
||||
uint32_t imm19 = (delta & 0x001ffffc) << 3;
|
||||
uint32_t opcode = 0;
|
||||
switch (original.size) {
|
||||
case 4:
|
||||
|
Loading…
Reference in New Issue
Block a user