diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h index d78a5e8abb..59caf48b08 100644 --- a/src/compiler/instruction.h +++ b/src/compiler/instruction.h @@ -89,6 +89,7 @@ class InstructionOperand { void* operator new(size_t size, Zone* zone) { return zone->New(static_cast(size)); } + void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } protected: InstructionOperand(Kind kind, int index, int virtual_register)