hotspot/src/share/vm/opto/node.hpp
changeset 10011 e8b38f7b9959
parent 7433 b418028612ad
child 10255 bab46e6f7661
--- a/hotspot/src/share/vm/opto/node.hpp	Tue Jun 28 15:04:39 2011 -0700
+++ b/hotspot/src/share/vm/opto/node.hpp	Tue Jun 28 15:24:29 2011 -0700
@@ -1463,6 +1463,9 @@
   bool is_nonempty() const { return (_inode_top >= _inodes); }
   bool is_empty() const { return (_inode_top < _inodes); }
   void clear() { _inode_top = _inodes - 1; } // retain storage
+
+  // Node_Stack is used to map nodes.
+  Node* find(uint idx) const;
 };