8294000: Filler array klass should be in jdk/vm/internal, not in java/vm/internal

Reviewed-by: shade, dholmes
This commit is contained in:
Thomas Schatzl 2022-09-21 07:58:07 +00:00
parent 379f3094db
commit 8ecdaa6811

View File

@ -328,7 +328,7 @@ void Universe::genesis(TRAPS) {
// Initialization of the fillerArrayKlass must come before regular
// int-TypeArrayKlass so that the int-Array mirror points to the
// int-TypeArrayKlass.
_fillerArrayKlassObj = TypeArrayKlass::create_klass(T_INT, "Ljava/internal/vm/FillerArray;", CHECK);
_fillerArrayKlassObj = TypeArrayKlass::create_klass(T_INT, "Ljdk/internal/vm/FillerArray;", CHECK);
for (int i = T_BOOLEAN; i < T_LONG+1; i++) {
_typeArrayKlassObjs[i] = TypeArrayKlass::create_klass((BasicType)i, CHECK);
}