Index: src/compiler/node.h |
diff --git a/src/compiler/node.h b/src/compiler/node.h |
index 7c9f3ad26f1b8bf6706f67e324aa63de339e7c0f..b291af236f9fbefedd38dbb0ca6683692574caa2 100644 |
--- a/src/compiler/node.h |
+++ b/src/compiler/node.h |
@@ -158,6 +158,10 @@ class V8_EXPORT_PRIVATE Node final { |
// Returns true if {owner1} and {owner2} are the only users of {this} node. |
bool OwnedBy(Node const* owner1, Node const* owner2) const; |
+ |
+ // Returns true if addressing related operands (such as load, store, lea) |
+ // are the only users of {this} node. |
+ bool OwnedByAddressingOperand() const; |
void Print() const; |
private: |