hotspot/src/share/vm/opto/node.cpp
changeset 781 e1baa9c8f16f
parent 670 ddf3e9583f2f
parent 768 d0bebc7eefc2
child 1067 f82e0a8cd438
equal deleted inserted replaced
743:b8b10c2a28fd 781:e1baa9c8f16f
  1385       find_recur( result, n->raw_out(j), idx, only_ctrl, old_space, new_space );
  1385       find_recur( result, n->raw_out(j), idx, only_ctrl, old_space, new_space );
  1386     }
  1386     }
  1387   }
  1387   }
  1388 #ifdef ASSERT
  1388 #ifdef ASSERT
  1389   // Search along debug_orig edges last:
  1389   // Search along debug_orig edges last:
  1390   for (Node* orig = n->debug_orig(); orig != NULL; orig = orig->debug_orig()) {
  1390   for (Node* orig = n->debug_orig(); orig != NULL && n != orig; orig = orig->debug_orig()) {
  1391     if (NotANode(orig))  break;
  1391     if (NotANode(orig))  break;
  1392     find_recur( result, orig, idx, only_ctrl, old_space, new_space );
  1392     find_recur( result, orig, idx, only_ctrl, old_space, new_space );
  1393   }
  1393   }
  1394 #endif //ASSERT
  1394 #endif //ASSERT
  1395 }
  1395 }