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

Unified Diff: src/compiler/node.h

Issue 509343002: Better typing and type verification (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Small refactoring Created 6 years, 2 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 bba639034b0d5ca70a740592d009a720ec77bc58..b76a41f9f1081480528f3ef6484295f1be13281a 100644
--- a/src/compiler/node.h
+++ b/src/compiler/node.h
@@ -36,7 +36,7 @@ class NodeData {
protected:
Operator* op_;
Bounds bounds_;
- explicit NodeData(Zone* zone) : bounds_(Bounds(Type::None(zone))) {}
+ explicit NodeData(Zone* zone) {}
friend class NodeProperties;
void set_bounds(Bounds b) { bounds_ = b; }

Powered by Google App Engine
This is Rietveld 408576698