diff src/share/vm/memory/allocation.hpp @ 14411:bdd155477289

8023033: PPC64 (part 13): basic changes for AIX Summary: Added AIX includes alpha-sorted before BSD. Fix compilation issues with xlC in shared code. Basic shared platform dependend adaption (vm_version etc.). Reviewed-by: kvn, dholmes, stefank
author goetz
date Thu, 22 Aug 2013 09:39:54 -0700
parents cf9d71d3e474
children e2722a66aba7
line wrap: on
line diff
--- a/src/share/vm/memory/allocation.hpp	Fri Jul 26 00:59:18 2013 +0200
+++ b/src/share/vm/memory/allocation.hpp	Thu Aug 22 09:39:54 2013 -0700
@@ -220,8 +220,11 @@
 class StackObj ALLOCATION_SUPER_CLASS_SPEC {
  private:
   void* operator new(size_t size);
+  void* operator new [](size_t size);
+#ifdef __IBMCPP__
+ public:
+#endif
   void  operator delete(void* p);
-  void* operator new [](size_t size);
   void  operator delete [](void* p);
 };