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

Unified Diff: src/compiler/generic-node-inl.h

Issue 509343002: Better typing and type verification (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
« no previous file with comments | « no previous file | src/compiler/graph.h » ('j') | src/compiler/graph.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/generic-node-inl.h
diff --git a/src/compiler/generic-node-inl.h b/src/compiler/generic-node-inl.h
index 51d1a50162d5ff7904621bf813a4f30bf3a2a2c8..3e34860d8dafa91e7b060159cfc75ed6c176d95e 100644
--- a/src/compiler/generic-node-inl.h
+++ b/src/compiler/generic-node-inl.h
@@ -23,7 +23,8 @@ GenericNode<B, S>::GenericNode(GenericGraphBase* graph, int input_count)
use_count_(0),
first_use_(NULL),
last_use_(NULL) {
- inputs_.static_ = reinterpret_cast<Input*>(this + 1), AssignUniqueID(graph);
+ inputs_.static_ = reinterpret_cast<Input*>(this + 1);
titzer 2014/08/28 13:12:31 That's a nice little gift
Benedikt Meurer 2014/08/29 07:00:58 Ahem, can we please get rid of this undefined beha
rossberg 2014/08/29 07:23:42 I agree. Since this problem has nothing to do with
+ AssignUniqueID(graph);
}
template <class B, class S>
« no previous file with comments | « no previous file | src/compiler/graph.h » ('j') | src/compiler/graph.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698