diff src/share/vm/gc_implementation/shared/markSweep.inline.hpp @ 374:a4b729f5b611

6716466: par compact - remove VerifyParallelOldWithMarkSweep code Reviewed-by: jmasa
author jcoomes
date Tue, 30 Sep 2008 11:49:31 -0700
parents d1605aabd0a1
children 2a1472c30599
line wrap: on
line diff
--- a/src/share/vm/gc_implementation/shared/markSweep.inline.hpp	Sat Sep 27 00:33:13 2008 -0700
+++ b/src/share/vm/gc_implementation/shared/markSweep.inline.hpp	Tue Sep 30 11:49:31 2008 -0700
@@ -23,13 +23,6 @@
  */
 
 inline void MarkSweep::mark_object(oop obj) {
-#ifndef SERIALGC
-  if (UseParallelOldGC && VerifyParallelOldWithMarkSweep) {
-    assert(PSParallelCompact::mark_bitmap()->is_marked(obj),
-           "Should be marked in the marking bitmap");
-  }
-#endif // SERIALGC
-
   // some marks may contain information we need to preserve so we store them away
   // and overwrite the mark.  We'll restore it at the end of markSweep.
   markOop mark = obj->mark();