mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 20:33:15 +00:00
The high bit of a Thumb2 ADR's offset is stored in bit 26, not bit 25.
This fixes 464.h264ref with the integrated assembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128172 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
66978bd81c
commit
741ad15e26
@ -246,7 +246,7 @@ static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
|
||||
}
|
||||
|
||||
uint32_t out = (opc << 21);
|
||||
out |= (Value & 0x800) << 14;
|
||||
out |= (Value & 0x800) << 15;
|
||||
out |= (Value & 0x700) << 4;
|
||||
out |= (Value & 0x0FF);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user