changeset 920: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 10d8c0d0d60e
children ac59d4e6dae5 6ab1d6ece8bd 05f89f00a864 e1fdf4fd34dc
files src/share/vm/gc_implementation/g1/concurrentMark.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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 {