8026707: JDK-8026391 broke the optimized build target
authorstefank
Thu, 17 Oct 2013 08:41:35 +0200
changeset 20732 39d1710a9a1c
parent 20731 079142abff59
child 20733 8dead86921fe
8026707: JDK-8026391 broke the optimized build target Reviewed-by: mgerdin, coleenp
hotspot/src/share/vm/memory/metachunk.hpp
--- a/hotspot/src/share/vm/memory/metachunk.hpp	Wed Oct 16 11:46:06 2013 +0200
+++ b/hotspot/src/share/vm/memory/metachunk.hpp	Thu Oct 17 08:41:35 2013 +0200
@@ -139,11 +139,12 @@
   size_t free_word_size() const;
 
 #ifdef ASSERT
-  void mangle();
   bool is_tagged_free() { return _is_tagged_free; }
   void set_is_tagged_free(bool v) { _is_tagged_free = v; }
 #endif
 
+  NOT_PRODUCT(void mangle();)
+
   void print_on(outputStream* st) const;
   void verify();
 };