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

Aleksey Shipilev shade at redhat.com
Mon Sep 23 19:35:19 UTC 2019


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

-- 
Thanks,
-Aleksey



More information about the hotspot-dev mailing list