8220660: [s390]: debug build broken after JDK-8220301
authormdoerr
Thu, 14 Mar 2019 12:30:57 +0100
changeset 54118 d611b76d1327
parent 54117 a6221f993616
child 54119 6bf8877eb1b9
child 57266 d6ddb48bb34a
8220660: [s390]: debug build broken after JDK-8220301 Reviewed-by: shade
src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp
--- a/src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp	Tue Mar 12 11:49:52 2019 +0800
+++ b/src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp	Thu Mar 14 12:30:57 2019 +0100
@@ -309,14 +309,12 @@
   Rbase = noreg; // end of lifetime
 
   // Filter young.
-  assert((unsigned int)G1CardTable::g1_young_card_val() <= 255, "otherwise check this code");
   __ z_cli(0, Rcard_addr, G1CardTable::g1_young_card_val());
   __ z_bre(filtered);
 
   // Check the card value. If dirty, we're done.
   // This also avoids false sharing of the (already dirty) card.
   __ z_sync(); // Required to support concurrent cleaning.
-  assert((unsigned int)G1CardTable::dirty_card_val() <= 255, "otherwise check this code");
   __ z_cli(0, Rcard_addr, G1CardTable::dirty_card_val()); // Reload after membar.
   __ z_bre(filtered);