Index: src/compiler/node.h |
diff --git a/src/compiler/node.h b/src/compiler/node.h |
index 838b4957c9b852c7e215248a61130635492e5127..7c99705c257f31e5afcec5ec469ee40c8080b39c 100644 |
--- a/src/compiler/node.h |
+++ b/src/compiler/node.h |
@@ -31,14 +31,13 @@ class NodeData { |
return static_cast<IrOpcode::Value>(op_->opcode()); |
} |
- Bounds bounds() { return bounds_; } |
- |
protected: |
const Operator* op_; |
Bounds bounds_; |
- explicit NodeData(Zone* zone) : bounds_(Bounds(Type::None(zone))) {} |
+ explicit NodeData(Zone* zone) {} |
friend class NodeProperties; |
+ Bounds bounds() { return bounds_; } |
void set_bounds(Bounds b) { bounds_ = b; } |
}; |