8196221: AArch64: Mistake in committed patch for JDK-8195859

The wrong patch was committed for JDK-8195859

Reviewed-by: aph
This commit is contained in:
Andrew Dinn 2018-01-26 16:38:21 +00:00
parent d244b3ccd1
commit 18beaf6646

View File

@ -1050,7 +1050,7 @@ void MacroAssembler::lookup_virtual_method(Register recv_klass,
} else { } else {
vtable_offset_in_bytes += vtable_index.as_constant() * wordSize; vtable_offset_in_bytes += vtable_index.as_constant() * wordSize;
ldr(method_result, ldr(method_result,
form_address(rscratch1, recv_klass, vtable_offset_in_bytes)); form_address(rscratch1, recv_klass, vtable_offset_in_bytes, 0));
} }
} }