comparison 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
comparison
equal deleted inserted replaced
246:9b66e6287f4a 247:02a35ad4adf8
1397 return _inodes[i].node; 1397 return _inodes[i].node;
1398 } 1398 }
1399 uint index() const { 1399 uint index() const {
1400 return _inode_top->indx; 1400 return _inode_top->indx;
1401 } 1401 }
1402 uint index_at(uint i) const {
1403 assert(_inodes + i <= _inode_top, "in range");
1404 return _inodes[i].indx;
1405 }
1402 void set_node(Node *n) { 1406 void set_node(Node *n) {
1403 _inode_top->node = n; 1407 _inode_top->node = n;
1404 } 1408 }
1405 void set_index(uint i) { 1409 void set_index(uint i) {
1406 _inode_top->indx = i; 1410 _inode_top->indx = i;