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

Unified Diff: src/compiler/node.h

Issue 1178403004: [turbofan] Use appropriate type for NodeId. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compilation errors. Created 5 years, 6 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 16b2aeeb1cc2b12e982ace299453f63645c5e8f7..08b775c1fff688376140e1316c236b141eca09b8 100644
--- a/src/compiler/node.h
+++ b/src/compiler/node.h
@@ -27,7 +27,7 @@ typedef uint32_t Mark;
// NodeIds are identifying numbers for nodes that can be used to index auxiliary
// out-of-line data associated with each node.
-typedef int32_t NodeId;
+typedef uint32_t NodeId;
// A Node is the basic primitive of graphs. Nodes are chained together by

Powered by Google App Engine
This is Rietveld 408576698