hotspot/src/share/vm/opto/node.cpp
changeset 35106 79f25c397652
parent 34503 57d1a0e76091
child 35539 9a687b686976
--- a/hotspot/src/share/vm/opto/node.cpp	Wed Dec 09 13:41:04 2015 +0100
+++ b/hotspot/src/share/vm/opto/node.cpp	Thu Dec 10 14:51:53 2015 +0300
@@ -2365,6 +2365,17 @@
 #endif
 }
 
+void Node_List::dump_simple() const {
+#ifndef PRODUCT
+  for( uint i = 0; i < _cnt; i++ )
+    if( _nodes[i] ) {
+      tty->print(" %d", _nodes[i]->_idx);
+    } else {
+      tty->print(" NULL");
+    }
+#endif
+}
+
 //=============================================================================
 //------------------------------remove-----------------------------------------
 void Unique_Node_List::remove( Node *n ) {