< prev index next >

src/share/vm/opto/loopnode.cpp

Print this page
rev 10785 : [backport] remove useless change in loopnode.cpp

*** 3317,3327 **** Node* s1 = s->fast_out(i); worklist.push(s1); } } else { Node *sctrl = has_ctrl(s) ? get_ctrl(s) : s->in(0); ! assert(sctrl != NULL || s->outcnt() == 0 || s->is_ShenandoahBarrier(), "must have control"); if (sctrl != NULL && !sctrl->is_top() && is_dominator(early, sctrl)) { LCA = dom_lca_for_get_late_ctrl(LCA, sctrl, n); } } } --- 3317,3327 ---- Node* s1 = s->fast_out(i); worklist.push(s1); } } else { Node *sctrl = has_ctrl(s) ? get_ctrl(s) : s->in(0); ! assert(sctrl != NULL || s->outcnt() == 0, "must have control"); if (sctrl != NULL && !sctrl->is_top() && is_dominator(early, sctrl)) { LCA = dom_lca_for_get_late_ctrl(LCA, sctrl, n); } } }
< prev index next >