< prev index next >

src/share/vm/gc/g1/g1ParScanThreadState.inline.hpp

Print this page

        

@@ -50,11 +50,11 @@
     oopDesc::encode_store_heap_oop(p, forwardee);
   } else if (in_cset_state.is_humongous()) {
     _g1h->set_humongous_is_live(obj);
   } else {
     assert(!in_cset_state.is_in_cset_or_humongous(),
-           err_msg("In_cset_state must be NotInCSet here, but is " CSETSTATE_FORMAT, in_cset_state.value()));
+           "In_cset_state must be NotInCSet here, but is " CSETSTATE_FORMAT, in_cset_state.value());
   }
 
   assert(obj != NULL, "Must be");
   update_rs(from, p, _worker_id);
 }

@@ -80,11 +80,11 @@
   objArrayOop to_obj_array   = objArrayOop(to_obj);
   // We keep track of the next start index in the length field of the
   // to-space object.
   int next_index             = to_obj_array->length();
   assert(0 <= next_index && next_index < length,
-         err_msg("invariant, next index: %d, length: %d", next_index, length));
+         "invariant, next index: %d, length: %d", next_index, length);
 
   int start                  = next_index;
   int end                    = length;
   int remainder              = end - start;
   // We'll try not to push a range that's smaller than ParGCArrayScanChunk.
< prev index next >