diff src/share/vm/opto/node.hpp @ 247:02a35ad4adf8

6723160: Nightly failure: Error: meet not symmetric Summary: Add missing _instance_id settings and other EA fixes. Reviewed-by: rasbold
author kvn
date Wed, 16 Jul 2008 16:04:39 -0700
parents d1605aabd0a1
children cc80376deb0c
line wrap: on
line diff
--- a/src/share/vm/opto/node.hpp	Wed Jul 16 10:08:57 2008 -0700
+++ b/src/share/vm/opto/node.hpp	Wed Jul 16 16:04:39 2008 -0700
@@ -1399,6 +1399,10 @@
   uint index() const {
     return _inode_top->indx;
   }
+  uint index_at(uint i) const {
+    assert(_inodes + i <= _inode_top, "in range");
+    return _inodes[i].indx;
+  }
   void set_node(Node *n) {
     _inode_top->node = n;
   }