We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc340a commit 59d8f67Copy full SHA for 59d8f67
src/hotspot/share/gc/g1/g1CollectedHeap.cpp
@@ -3398,12 +3398,10 @@ class RebuildCodeRootClosure: public CodeBlobClosure {
3398
_g1h(g1h) {}
3399
3400
void do_code_blob(CodeBlob* cb) {
3401
- nmethod* nm = (cb != NULL) ? cb->as_nmethod_or_null() : NULL;
3402
- if (nm == NULL) {
3403
- return;
+ nmethod* nm = cb->as_nmethod_or_null();
+ if (nm != NULL) {
+ _g1h->register_nmethod(nm);
3404
}
3405
-
3406
- _g1h->register_nmethod(nm);
3407
3408
};
3409
0 commit comments