Skip to content

Commit

Permalink
8256020: Don't resurrect objects on argument-dependency access
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Kennke committed Nov 8, 2020
1 parent c5462bb commit a478871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/code/dependencies.cpp
Expand Up @@ -948,7 +948,7 @@ inline Metadata* Dependencies::DepStream::recorded_metadata_at(int i) {

inline oop Dependencies::DepStream::recorded_oop_at(int i) {
return (_code != NULL)
? _code->oop_at(i)
? _code->oop_at_phantom(i)
: JNIHandles::resolve(_deps->oop_recorder()->oop_at(i));
}

Expand Down

0 comments on commit a478871

Please sign in to comment.