mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-08 20:49:44 +00:00
8308192: Error in parsing replay file when staticfield is an array of single dimension
Reviewed-by: thartmann, kvn
This commit is contained in:
parent
02dc95e6b9
commit
d3feedf511
@ -1101,6 +1101,7 @@ class CompileReplay : public StackObj {
|
||||
value = oopFactory::new_longArray(length, CHECK);
|
||||
} else if (field_signature[0] == JVM_SIGNATURE_ARRAY &&
|
||||
field_signature[1] == JVM_SIGNATURE_CLASS) {
|
||||
parse_klass(CHECK); // eat up the array class name
|
||||
Klass* kelem = resolve_klass(field_signature + 1, CHECK);
|
||||
value = oopFactory::new_objArray(kelem, length, CHECK);
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user