src/share/vm/opto/node.hpp

changeset 682
02a35ad4adf8
parent 631
d1605aabd0a1
child 835
cc80376deb0c
     1.1 --- a/src/share/vm/opto/node.hpp	Wed Jul 16 10:08:57 2008 -0700
     1.2 +++ b/src/share/vm/opto/node.hpp	Wed Jul 16 16:04:39 2008 -0700
     1.3 @@ -1399,6 +1399,10 @@
     1.4    uint index() const {
     1.5      return _inode_top->indx;
     1.6    }
     1.7 +  uint index_at(uint i) const {
     1.8 +    assert(_inodes + i <= _inode_top, "in range");
     1.9 +    return _inodes[i].indx;
    1.10 +  }
    1.11    void set_node(Node *n) {
    1.12      _inode_top->node = n;
    1.13    }

mercurial