Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1096)

Unified Diff: src/compiler/instruction.h

Issue 901603002: try to fix windows after r26424 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698