Index: src/compiler/node.h |
diff --git a/src/compiler/node.h b/src/compiler/node.h |
index ae160335b9ccb2f404b1ed5b4f7cd2765b37ac21..07cf9487b27c4d0502e8b7cba89c86d4a064474b 100644 |
--- a/src/compiler/node.h |
+++ b/src/compiler/node.h |
@@ -67,7 +67,6 @@ class Node FINAL { |
void TrimInputCount(int new_input_count); |
int UseCount() const; |
- Node* UseAt(int index) const; |
void ReplaceUses(Node* replace_to); |
class InputEdges FINAL { |
@@ -226,7 +225,6 @@ class Node FINAL { |
NodeId const id_; |
unsigned bit_field_; |
Use* first_use_; |
- Use* last_use_; |
union { |
// When a node is initially allocated, it uses a static buffer to hold its |
// inputs under the assumption that the number of outputs will not increase. |