Index: src/compiler/node-properties.h |
diff --git a/src/compiler/node-properties.h b/src/compiler/node-properties.h |
index 8019019cba1865fa78f6ca48b59d56b025722f72..3b48378865eb8c105310117ad923a5cb6a206f35 100644 |
--- a/src/compiler/node-properties.h |
+++ b/src/compiler/node-properties.h |
@@ -80,6 +80,7 @@ class NodeProperties final { |
// Miscellaneous mutators. |
static void ReplaceValueInput(Node* node, Node* value, int index); |
+ static void ReplaceValueInputs(Node* node, Node* value); |
Michael Starzinger
2015/11/20 12:06:47
The semantics of this function is "replace first v
Benedikt Meurer
2015/11/20 12:28:52
Done.
|
static void ReplaceContextInput(Node* node, Node* context); |
static void ReplaceControlInput(Node* node, Node* control); |
static void ReplaceEffectInput(Node* node, Node* effect, int index = 0); |