Skip to content

Commit 59d8f67

Browse files
committedNov 21, 2022
8297265: G1: Remove unnecessary null-check in RebuildCodeRootClosure::do_code_blob
Reviewed-by: tschatzl
1 parent 2fc340a commit 59d8f67

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
 

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -3398,12 +3398,10 @@ class RebuildCodeRootClosure: public CodeBlobClosure {
33983398
_g1h(g1h) {}
33993399

34003400
void do_code_blob(CodeBlob* cb) {
3401-
nmethod* nm = (cb != NULL) ? cb->as_nmethod_or_null() : NULL;
3402-
if (nm == NULL) {
3403-
return;
3401+
nmethod* nm = cb->as_nmethod_or_null();
3402+
if (nm != NULL) {
3403+
_g1h->register_nmethod(nm);
34043404
}
3405-
3406-
_g1h->register_nmethod(nm);
34073405
}
34083406
};
34093407

0 commit comments

Comments
 (0)
Please sign in to comment.