RFR (XXS) 8231375: AArch64 build failure after JDK-8230505

Daniel D. Daugherty daniel.daugherty at oracle.com
Mon Sep 23 19:44:03 UTC 2019


Thumbs up. I concur that this is a trivial fix.

Dan


On 9/23/19 3:35 PM, Aleksey Shipilev wrote:
> Bug:
>    https://bugs.openjdk.java.net/browse/JDK-8231375
>
> Trivial fix, missing parenthesis:
>
> diff -r 08a5148e7c4e src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp
> --- a/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp       Mon Sep 23 14:49:04 2019 -0400
> +++ b/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp       Mon Sep 23 21:28:12 2019 +0200
> @@ -729,5 +729,5 @@
>
>     } else if (dest->is_double_cpu()) {
> -    if (is_reference_type(src->type()) {
> +    if (is_reference_type(src->type())) {
>         // Surprising to me but we can see move of a long to t_object
>         __ verify_oop(src->as_register());
>
> Testing: aarch64 build
>



More information about the hotspot-dev mailing list