comparison src/share/vm/code/nmethod.cpp @ 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 98cb887364d3
comparison
equal deleted inserted replaced
373:06df86c2ec37 374:a4b729f5b611
1348 // The oop should be kept alive 1348 // The oop should be kept alive
1349 keep_alive->do_oop(root); 1349 keep_alive->do_oop(root);
1350 return false; 1350 return false;
1351 } 1351 }
1352 } 1352 }
1353 if (!UseParallelOldGC || !VerifyParallelOldWithMarkSweep) { 1353 assert(unloading_occurred, "Inconsistency in unloading");
1354 // Cannot do this test if verification of the UseParallelOldGC
1355 // code using the PSMarkSweep code is being done.
1356 assert(unloading_occurred, "Inconsistency in unloading");
1357 }
1358 make_unloaded(is_alive, obj); 1354 make_unloaded(is_alive, obj);
1359 return true; 1355 return true;
1360 } 1356 }
1361 1357
1362 // ------------------------------------------------------------------ 1358 // ------------------------------------------------------------------