mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-16 05:15:22 +00:00
7035161: assert(!o->is_null_object()) failed: null object not yet handled here
Reviewed-by: kvn
This commit is contained in:
parent
83ccc5e2c6
commit
bbb0b31bfe
@ -66,8 +66,8 @@ ciConstant ciInstance::field_value(ciField* field) {
|
||||
"invalid access");
|
||||
VM_ENTRY_MARK;
|
||||
ciConstant result;
|
||||
oop obj = get_oop();
|
||||
assert(obj != NULL, "bad oop");
|
||||
Handle obj = get_oop();
|
||||
assert(!obj.is_null(), "bad oop");
|
||||
BasicType field_btype = field->type()->basic_type();
|
||||
int offset = field->offset();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user