diff src/share/vm/oops/methodDataOop.cpp @ 2264:a97fd181b813

Merge
author kvn
date Wed, 23 Feb 2011 11:18:16 -0800
parents 72d6c57d0658 e5383553fd4e
children f7251c729b31
line wrap: on
line diff
--- a/src/share/vm/oops/methodDataOop.cpp	Tue Feb 22 15:26:36 2011 -0800
+++ b/src/share/vm/oops/methodDataOop.cpp	Wed Feb 23 11:18:16 2011 -0800
@@ -271,17 +271,6 @@
     }
   }
 }
-
-void ReceiverTypeData::update_pointers(HeapWord* beg_addr, HeapWord* end_addr) {
-  // The loop bounds could be computed based on beg_addr/end_addr and the
-  // boundary test hoisted outside the loop (see klassVTable for an example);
-  // however, row_limit() is small enough (2) to make that less efficient.
-  for (uint row = 0; row < row_limit(); row++) {
-    if (receiver_unchecked(row) != NULL) {
-      PSParallelCompact::adjust_pointer(adr_receiver(row), beg_addr, end_addr);
-    }
-  }
-}
 #endif // SERIALGC
 
 #ifndef PRODUCT