Merge
authorapetrusenko
Fri, 25 Sep 2009 04:39:54 -0700
changeset 3828 fa1565f1aa3d
parent 3826 67b89f5a5cac (current diff)
parent 3827 cef24d2f0baf (diff)
child 3829 4903de895f0c
child 3916 9acd7f9d4f52
child 3917 97f4f06a7f6d
child 4007 bd61a7ea1907
Merge
--- a/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp	Tue Sep 22 21:12:37 2009 -0600
+++ b/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp	Fri Sep 25 04:39:54 2009 -0700
@@ -2752,7 +2752,6 @@
   cm->revisit_klass_stack()->push(k);
 }
 
-#if ( defined(COMPILER1) || defined(COMPILER2) )
 void PSParallelCompact::revisit_mdo(ParCompactionManager* cm, DataLayout* p) {
   cm->revisit_mdo_stack()->push(p);
 }
@@ -2778,7 +2777,6 @@
     follow_stack(cm);
   }
 }
-#endif //  ( COMPILER1 || COMPILER2 )
 
 
 #ifdef VALIDATE_MARK_SWEEP
--- a/hotspot/src/share/vm/gc_implementation/shared/markSweep.cpp	Tue Sep 22 21:12:37 2009 -0600
+++ b/hotspot/src/share/vm/gc_implementation/shared/markSweep.cpp	Fri Sep 25 04:39:54 2009 -0700
@@ -73,7 +73,6 @@
   follow_stack();
 }
 
-#if ( defined(COMPILER1) || defined(COMPILER2) )
 void MarkSweep::revisit_mdo(DataLayout* p) {
   _revisit_mdo_stack->push(p);
 }
@@ -92,7 +91,6 @@
   }
   follow_stack();
 }
-#endif //  ( COMPILER1 || COMPILER2 )
 
 MarkSweep::FollowRootClosure  MarkSweep::follow_root_closure;