-
Bug
-
Resolution: Fixed
-
P2
-
20
-
b27
-
aix
After JDK-8295475, compiling with xlclang++ complains about many objects which inherit the ResourceObj class.
Sample error output:
In file included from ad_ppc.cpp:33:
/home/hotspot/openjdk/jdk-tyler/src/hotspot/share/code/compiledIC.hpp:280:22: error: attempt to use a deleted function
CompiledIC* c_ic = new CompiledIC(nm, nativeCall_before(return_addr));
^
/home/hotspot/openjdk/jdk-tyler/src/hotspot/share/memory/allocation.hpp:443:9: note: 'operator delete' has been explicitly marked deleted here
void operator delete(void* p) = delete;
Sample error output:
In file included from ad_ppc.cpp:33:
/home/hotspot/openjdk/jdk-tyler/src/hotspot/share/code/compiledIC.hpp:280:22: error: attempt to use a deleted function
CompiledIC* c_ic = new CompiledIC(nm, nativeCall_before(return_addr));
^
/home/hotspot/openjdk/jdk-tyler/src/hotspot/share/memory/allocation.hpp:443:9: note: 'operator delete' has been explicitly marked deleted here
void operator delete(void* p) = delete;
- relates to
-
JDK-8295475 Move non-resource allocation strategies out of ResourceObj
-
- Resolved
-