hotspot/src/share/vm/opto/parse.hpp
changeset 38177 b0c9cb06506b
parent 36336 7006dd73b206
child 39252 a3644fa2b8b4
equal deleted inserted replaced
38175:4e2bff1a5467 38177:b0c9cb06506b
   166     int                _all_successors; // Include exception paths also.
   166     int                _all_successors; // Include exception paths also.
   167     Block**            _successors;
   167     Block**            _successors;
   168 
   168 
   169     // Use init_node/init_graph to initialize Blocks.
   169     // Use init_node/init_graph to initialize Blocks.
   170     // Block() : _live_locals((uintptr_t*)NULL,0) { ShouldNotReachHere(); }
   170     // Block() : _live_locals((uintptr_t*)NULL,0) { ShouldNotReachHere(); }
   171     Block() : _live_locals(NULL,0) { ShouldNotReachHere(); }
   171     Block() : _live_locals() { ShouldNotReachHere(); }
   172 
   172 
   173    public:
   173    public:
   174 
   174 
   175     // Set up the block data structure itself.
   175     // Set up the block data structure itself.
   176     void init_node(Parse* outer, int po);
   176     void init_node(Parse* outer, int po);