comparison src/share/vm/opto/node.cpp @ 222:2a1a77d3458f

6718676: putback for 6604014 is incomplete Reviewed-by: kvn, jrose
author never
date Tue, 24 Jun 2008 16:00:14 -0700
parents 44a553b2809d
children 9c2ecc2ffb12
comparison
equal deleted inserted replaced
221:1e026f8da827 222:2a1a77d3458f
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 }