src/hotspot/share/gc/parallel/mutableSpace.cpp
changeset 51268 4ac20e5f96ce
parent 50800 6da12aa23b88
child 51332 c25572739e7c
--- a/src/hotspot/share/gc/parallel/mutableSpace.cpp	Tue Jul 31 13:12:06 2018 -0400
+++ b/src/hotspot/share/gc/parallel/mutableSpace.cpp	Tue Jul 31 14:24:10 2018 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -250,7 +250,7 @@
   HeapWord* t = top();
   HeapWord* prev_p = NULL;
   while (p < t) {
-    oop(p)->verify();
+    oopDesc::verify(oop(p));
     prev_p = p;
     p += oop(p)->size();
   }