comparison src/share/vm/gc_implementation/g1/concurrentMark.cpp @ 912:308762b2bf14

6872000: G1: compilation fails on linux/older gcc Reviewed-by: jcoomes, tonyp
author apetrusenko
date Fri, 14 Aug 2009 13:44:15 -0700
parents 18f526145aea
children e1fdf4fd34dc 148e5441d916
comparison
equal deleted inserted replaced
910:10d8c0d0d60e 912:308762b2bf14
2399 push(obj, next_arr_ind); 2399 push(obj, next_arr_ind);
2400 } 2400 }
2401 // Now process this portion of this one. 2401 // Now process this portion of this one.
2402 int lim = MIN2(next_arr_ind, len); 2402 int lim = MIN2(next_arr_ind, len);
2403 for (int j = arr_ind; j < lim; j++) { 2403 for (int j = arr_ind; j < lim; j++) {
2404 do_oop(aobj->obj_at_addr<T>(j)); 2404 do_oop(aobj->objArrayOopDesc::obj_at_addr<T>(j));
2405 } 2405 }
2406 2406
2407 } else { 2407 } else {
2408 obj->oop_iterate(this); 2408 obj->oop_iterate(this);
2409 } 2409 }