src/share/vm/opto/block.cpp

changeset 1040
98cb887364d3
parent 1036
523ded093c31
child 1063
7bb995fbd3c0
     1.1 --- a/src/share/vm/opto/block.cpp	Fri Feb 27 08:34:19 2009 -0800
     1.2 +++ b/src/share/vm/opto/block.cpp	Fri Feb 27 13:27:09 2009 -0800
     1.3 @@ -181,7 +181,7 @@
     1.4  }
     1.5  
     1.6  //------------------------------has_uncommon_code------------------------------
     1.7 -// Return true if the block's code implies that it is not likely to be
     1.8 +// Return true if the block's code implies that it is likely to be
     1.9  // executed infrequently.  Check to see if the block ends in a Halt or
    1.10  // a low probability call.
    1.11  bool Block::has_uncommon_code() const {
    1.12 @@ -1311,7 +1311,7 @@
    1.13        }
    1.14      } else if (e->state() == CFGEdge::open) {
    1.15        // Append traces, even without a fall-thru connection.
    1.16 -      // But leave root entry at the begining of the block list.
    1.17 +      // But leave root entry at the beginning of the block list.
    1.18        if (targ_trace != trace(_cfg._broot)) {
    1.19          e->set_state(CFGEdge::connected);
    1.20          src_trace->append(targ_trace);
    1.21 @@ -1434,7 +1434,7 @@
    1.22      }
    1.23  
    1.24      // Backbranch to the top of a trace
    1.25 -    // Scroll foward through the trace from the targ_block. If we find
    1.26 +    // Scroll forward through the trace from the targ_block. If we find
    1.27      // a loop head before another loop top, use the the loop head alignment.
    1.28      for (Block *b = targ_block; b != NULL; b = next(b)) {
    1.29        if (b->has_loop_alignment()) {

mercurial