< prev index next >

src/share/vm/c1/c1_LIRGenerator.hpp

Print this page
rev 9031 : 8138890: C1: Ambiguous operator delete
Summary: xlC on AIX rejects to compile LIRGenerator and RangeCheckEliminator::Verification
Reviewed-by:

*** 151,160 **** --- 151,168 ---- }; // only the classes below belong in the same file class LIRGenerator: public InstructionVisitor, public BlockClosure { + private: + void* operator new(size_t size) throw(); + void* operator new[](size_t size) throw(); + #ifdef __IBMCPP__ + public: + #endif + void operator delete(void* p) { ShouldNotReachHere(); } + void operator delete[](void* p) { ShouldNotReachHere(); } private: Compilation* _compilation; ciMethod* _method; // method that we are compiling PhiResolverState _resolver_state;
< prev index next >