RFR: 8248404: AArch64: Remove uses of long and unsigned long [v2]
Coleen Phillimore
coleenp at openjdk.java.net
Tue Jan 11 16:04:04 UTC 2022
On Tue, 11 Jan 2022 10:46:03 GMT, Andrew Haley <aph at openjdk.org> wrote:
>> Coleen Phillimore has updated the pull request incrementally with one additional commit since the last revision:
>>
>> Cast Address operand to int
>
> src/hotspot/cpu/aarch64/macroAssembler_aarch64.hpp line 499:
>
>> 497: #ifdef __APPLE__
>> 498: // macosx wants all the overloads
>> 499: inline void mov(Register dst, intptr_t imm32) { mov_immediate64(dst, imm32); }
>
> Suggestion:
>
> inline void mov(Register dst, intptr_t imm64) { mov_immediate64(dst, imm64); }
fixed all these.
-------------
PR: https://git.openjdk.java.net/jdk/pull/7023
More information about the hotspot-dev
mailing list