src/share/vm/opto/block.hpp

changeset 1040
98cb887364d3
parent 1039
ec59443af135
child 1108
fbc12e71c476
     1.1 --- a/src/share/vm/opto/block.hpp	Fri Feb 27 08:34:19 2009 -0800
     1.2 +++ b/src/share/vm/opto/block.hpp	Fri Feb 27 13:27:09 2009 -0800
     1.3 @@ -609,7 +609,7 @@
     1.4    Block * next(Block *b) const { return _next_list[b->_pre_order]; }
     1.5    void set_next(Block *b, Block *n) const { _next_list[b->_pre_order] = n; }
     1.6  
     1.7 -  // Return the block that preceeds "b" in the trace.
     1.8 +  // Return the block that precedes "b" in the trace.
     1.9    Block * prev(Block *b) const { return _prev_list[b->_pre_order]; }
    1.10    void set_prev(Block *b, Block *p) const { _prev_list[b->_pre_order] = p; }
    1.11  

mercurial