Index: src/compiler/node-matchers.h |
diff --git a/src/compiler/node-matchers.h b/src/compiler/node-matchers.h |
index 7e978af8538f6fa7f9168488a072d7331d4f7624..be944ce097f1fa84f1e831d19f40bac210809bfa 100644 |
--- a/src/compiler/node-matchers.h |
+++ b/src/compiler/node-matchers.h |
@@ -17,7 +17,7 @@ struct NodeMatcher { |
explicit NodeMatcher(Node* node) : node_(node) {} |
Node* node() const { return node_; } |
- Operator* op() const { return node()->op(); } |
+ const Operator* op() const { return node()->op(); } |
IrOpcode::Value opcode() const { return node()->opcode(); } |
bool HasProperty(Operator::Property property) const { |