src/share/vm/opto/block.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/block.cpp	Mon May  5 12:29:10 2014
--- new/src/share/vm/opto/block.cpp	Mon May  5 12:29:09 2014

*** 1266,1276 **** --- 1266,1275 ---- while( _cnt <= from_idx ) _indices[_cnt++] = 0; _indices[from_idx] = to_idx; } void UnionFind::reset( uint max ) { assert( max <= max_uint, "Must fit within uint" ); // Force the Union-Find mapping to be at least this large extend(max,0); // Initialize to be the ID mapping. for( uint i=0; i<max; i++ ) map(i,i); }

src/share/vm/opto/block.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File