mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-24 17:20:06 +00:00
8000459: assert(java_lang_String::is_instance(entry)) failure with various mlvm tests
Remove unneeded assert. Reviewed-by: sspitsyn, coleenp
This commit is contained in:
parent
c5eaaaa070
commit
7757ae0cbf
@ -2862,9 +2862,8 @@ inline bool VM_HeapWalkOperation::iterate_over_class(oop java_class) {
|
||||
oop entry;
|
||||
if (tag.is_string()) {
|
||||
entry = pool->resolved_string_at(i);
|
||||
// If the entry is non-null it it resolved.
|
||||
// If the entry is non-null it is resolved.
|
||||
if (entry == NULL) continue;
|
||||
assert(java_lang_String::is_instance(entry), "must be string");
|
||||
} else {
|
||||
entry = Klass::cast(pool->resolved_klass_at(i))->java_mirror();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user