| Index: src/compiler/graph.h
 | 
| diff --git a/src/compiler/graph.h b/src/compiler/graph.h
 | 
| index 07eb02f9c99bfa26d11485055b6ea62e717439e5..8f24cf580e22dce0200179ea8b8b0c0338ff14de 100644
 | 
| --- a/src/compiler/graph.h
 | 
| +++ b/src/compiler/graph.h
 | 
| @@ -25,7 +25,8 @@ class Graph : public GenericGraph<Node> {
 | 
|    explicit Graph(Zone* zone);
 | 
|  
 | 
|    // Base implementation used by all factory methods.
 | 
| -  Node* NewNode(const Operator* op, int input_count, Node** inputs);
 | 
| +  Node* NewNode(const Operator* op, int input_count, Node** inputs,
 | 
| +                bool incomplete = false);
 | 
|  
 | 
|    // Factories for nodes with static input counts.
 | 
|    Node* NewNode(const Operator* op) {
 | 
| @@ -64,6 +65,8 @@ class Graph : public GenericGraph<Node> {
 | 
|    template <class Visitor>
 | 
|    void VisitNodeInputsFromEnd(Visitor* visitor);
 | 
|  
 | 
| +  void Decorate(Node* node);
 | 
| +
 | 
|    void AddDecorator(GraphDecorator* decorator) {
 | 
|      decorators_.push_back(decorator);
 | 
|    }
 | 
| 
 |