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

Unified Diff: src/compiler/node.h

Issue 549063002: [turbofan] Fix Projection operator parameter type. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix2 Created 6 years, 3 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 | « src/compiler/instruction-selector.cc ('k') | src/compiler/node.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/node.h
diff --git a/src/compiler/node.h b/src/compiler/node.h
index ac2f332210b00c4e08a6e6529652fd78d65272c2..2c4c5d31d2f751bad0edeb4cee7a9bc1e3e057a7 100644
--- a/src/compiler/node.h
+++ b/src/compiler/node.h
@@ -58,7 +58,7 @@ class Node FINAL : public GenericNode<NodeData, Node> {
void Kill();
void CollectProjections(ZoneVector<Node*>* projections);
- Node* FindProjection(int32_t projection_index);
+ Node* FindProjection(size_t projection_index);
};
OStream& operator<<(OStream& os, const Node& n);
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698