Skip to content

Commit d9abf60

Browse files
mo-beckluhenrylewurm
authored andcommitted
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
1 parent ddb726d commit d9abf60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ void MacroAssembler::movptr(Register r, uintptr_t imm64) {
15071507
block_comment(buffer);
15081508
}
15091509
#endif
1510-
assert(imm64 < (1ul << 48), "48-bit overflow in address constant");
1510+
assert(imm64 < (1ull << 48), "48-bit overflow in address constant");
15111511
movz(r, imm64 & 0xffff);
15121512
imm64 >>= 16;
15131513
movk(r, imm64 & 0xffff, 16);

0 commit comments

Comments
 (0)