8250824: AArch64: follow up for JDK-8248414
The original change missed to update an assert. Co-authored-by: Ludovic Henry <luhenry@microsoft.com> Co-authored-by: Bernhard Urban-Forster <beurba@microsoft.com> Reviewed-by: dholmes
This commit is contained in:
parent
ddb726d4a0
commit
d9abf606d9
@ -1507,7 +1507,7 @@ void MacroAssembler::movptr(Register r, uintptr_t imm64) {
|
||||
block_comment(buffer);
|
||||
}
|
||||
#endif
|
||||
assert(imm64 < (1ul << 48), "48-bit overflow in address constant");
|
||||
assert(imm64 < (1ull << 48), "48-bit overflow in address constant");
|
||||
movz(r, imm64 & 0xffff);
|
||||
imm64 >>= 16;
|
||||
movk(r, imm64 & 0xffff, 16);
|
||||
|
Loading…
x
Reference in New Issue
Block a user