< prev index next >

src/hotspot/share/gc/shared/collectedHeap.cpp

Print this page
rev 48551 : [mq]: heap8
rev 48552 : [mq]: heap10a
rev 48553 : [mq]: heap14_rebased
rev 48557 : [mq]: heap17

@@ -313,11 +313,11 @@
   bool should_sample = HeapMonitoring::enabled() && thread->tlab().should_sample();
 
   HeapWord* obj = NULL;
   if (should_sample) {
     // Remember the tlab end to fix up the sampling rate.
-    HeapWord *tlab_old_end = thread->tlab().end();
+    HeapWord* tlab_old_end = thread->tlab().end();
     obj = allocate_sampled_object(thread, size);
 
     // If we did allocate in this tlab, sample it. Otherwise, we wait for the
     // new tlab's first allocation at the end of this method.
     if (obj != NULL) {
< prev index next >