src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp
changeset 48673 e321560ac819
parent 48652 7c03f19d38a7
child 48682 34e45260c040
--- a/src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp	Fri Jan 26 09:37:10 2018 +0800
+++ b/src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp	Thu Jan 25 14:47:27 2018 +0000
@@ -1049,7 +1049,8 @@
     ldr(method_result, Address(method_result, vtable_offset_in_bytes));
   } else {
     vtable_offset_in_bytes += vtable_index.as_constant() * wordSize;
-    ldr(method_result, Address(recv_klass, vtable_offset_in_bytes));
+    ldr(method_result,
+        form_address(rscratch1, recv_klass, vtable_offset_in_bytes));
   }
 }