comparison src/share/vm/opto/split_if.cpp @ 605:98cb887364d3

6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
author twisti
date Fri, 27 Feb 2009 13:27:09 -0800
parents a61af66fc99e
children b2b6a9bf6238
comparison
equal deleted inserted replaced
604:ec59443af135 605:98cb887364d3
316 if( use->is_CFG() ) 316 if( use->is_CFG() )
317 return use; 317 return use;
318 318
319 if( use->is_Phi() ) { // Phi uses in prior block 319 if( use->is_Phi() ) { // Phi uses in prior block
320 // Grab the first Phi use; there may be many. 320 // Grab the first Phi use; there may be many.
321 // Each will be handled as a seperate iteration of 321 // Each will be handled as a separate iteration of
322 // the "while( phi->outcnt() )" loop. 322 // the "while( phi->outcnt() )" loop.
323 uint j; 323 uint j;
324 for( j = 1; j < use->req(); j++ ) 324 for( j = 1; j < use->req(); j++ )
325 if( use->in(j) == def ) 325 if( use->in(j) == def )
326 break; 326 break;