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

Unified Diff: src/compiler/instruction.h

Issue 492203002: Initial support for debugger frame state in Turbofan. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Another attempt to fix Win64 Created 6 years, 4 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
Index: src/compiler/instruction.h
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
index 7b357639efd1d66774424c98a6f8f9cdf740ae0c..31f31758b6d6c250a1580b5a0d110b27267d75e7 100644
--- a/src/compiler/instruction.h
+++ b/src/compiler/instruction.h
@@ -89,6 +89,9 @@ class InstructionOperand : public ZoneObject {
unsigned value_;
};
+typedef std::vector<InstructionOperand*, zone_allocator<InstructionOperand*> >
+ InstructionOperandVector;
+
OStream& operator<<(OStream& os, const InstructionOperand& op);
class UnallocatedOperand : public InstructionOperand {

Powered by Google App Engine
This is Rietveld 408576698