diff 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
line wrap: on
line diff
--- a/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Wed Aug 12 14:27:54 2009 -0700
+++ b/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Fri Aug 14 13:44:15 2009 -0700
@@ -2401,7 +2401,7 @@
         // Now process this portion of this one.
         int lim = MIN2(next_arr_ind, len);
         for (int j = arr_ind; j < lim; j++) {
-          do_oop(aobj->obj_at_addr<T>(j));
+          do_oop(aobj->objArrayOopDesc::obj_at_addr<T>(j));
         }
 
       } else {