8251505: Use of types in compiler shared code should be consistent.

Reviewed-by: phh
This commit is contained in:
Yi-Fan Tsai 2022-02-03 19:34:28 +00:00 committed by Paul Hohensee
parent 130cf46dcb
commit b6935dfb86
10 changed files with 33 additions and 31 deletions

View file

@ -553,7 +553,7 @@ void JVMCIEnv::put_int_at(JVMCIPrimitiveArray array, int index, jint value) {
}
}
long JVMCIEnv::get_long_at(JVMCIPrimitiveArray array, int index) {
jlong JVMCIEnv::get_long_at(JVMCIPrimitiveArray array, int index) {
if (is_hotspot()) {
return HotSpotJVMCI::resolve(array)->long_at(index);
} else {