src/hotspot/share/opto/loopopts.cpp
changeset 48713 efa7f1a283e4
parent 48603 e5da6c246176
child 48964 86143b5899dc
equal deleted inserted replaced
48712:f8d9bedbacf2 48713:efa7f1a283e4
  1034     : u_loop->_head->as_Loop()->skip_strip_mined()->in(LoopNode::EntryControl);
  1034     : u_loop->_head->as_Loop()->skip_strip_mined()->in(LoopNode::EntryControl);
  1035 }
  1035 }
  1036 
  1036 
  1037 
  1037 
  1038 bool PhaseIdealLoop::identical_backtoback_ifs(Node *n) {
  1038 bool PhaseIdealLoop::identical_backtoback_ifs(Node *n) {
  1039   if (!n->is_If()) {
  1039   if (!n->is_If() || n->is_CountedLoopEnd()) {
  1040     return false;
  1040     return false;
  1041   }
  1041   }
  1042   if (!n->in(0)->is_Region()) {
  1042   if (!n->in(0)->is_Region()) {
  1043     return false;
  1043     return false;
  1044   }
  1044   }