| Index: src/compiler/instruction.h
|
| diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
|
| index d78a5e8abb2b9a47228812ea12156b1ea73a3f26..59caf48b089657934818c2235d47c68fe84543aa 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<int>(size));
|
| }
|
| + void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
|
|
|
| protected:
|
| InstructionOperand(Kind kind, int index, int virtual_register)
|
|
|