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

Unified Diff: src/compiler/node.h

Issue 492203002: Initial support for debugger frame state in Turbofan. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Relax a CHECK to DCHECK 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/node.h
diff --git a/src/compiler/node.h b/src/compiler/node.h
index ddca510a0e902c2a00c6bd43abbfca26bec0e491..17f66f0388c489e0b870647bb89588a632473bd6 100644
--- a/src/compiler/node.h
+++ b/src/compiler/node.h
@@ -54,7 +54,7 @@ class Node : public GenericNode<NodeData, Node> {
void Initialize(Operator* op) { set_op(op); }
- void CollectProjections(int projection_count, Node** projections);
+ void CollectProjections(std::vector<Node*>* projections);
Node* FindProjection(int32_t projection_index);
};

Powered by Google App Engine
This is Rietveld 408576698