Merge
This commit is contained in:
commit
2357edfa00
@ -1085,6 +1085,7 @@ void instanceKlass::set_cached_itable_index(size_t idnum, int index) {
|
||||
if (indices == NULL || (length = (size_t)indices[0]) <= idnum) {
|
||||
size_t size = MAX2(idnum+1, (size_t)idnum_allocated_count());
|
||||
int* new_indices = NEW_C_HEAP_ARRAY(int, size+1);
|
||||
new_indices[0] =(int)size; // array size held in the first element
|
||||
// Copy the existing entries, if any
|
||||
size_t i;
|
||||
for (i = 0; i < length; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user