comparison src/share/vm/opto/node.cpp @ 235:9c2ecc2ffb12 jdk7-b31

Merge
author trims
date Fri, 11 Jul 2008 01:14:44 -0700
parents d1605aabd0a1 2a1a77d3458f
children ab075d07f1ba
comparison
equal deleted inserted replaced
197:de141433919f 235:9c2ecc2ffb12
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 }