1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef V8_COMPILER_GRAPH_INL_H_
6 #define V8_COMPILER_GRAPH_INL_H_
8 #include "src/compiler/generic-algorithm.h"
9 #include "src/compiler/graph.h"
15 template <class Visitor>
16 void Graph::VisitNodeInputsFromEnd(Visitor* visitor) {
18 GenericGraphVisit::Visit<Visitor>(this, &tmp_zone, end(), visitor);
21 } // namespace compiler
22 } // namespace internal
25 #endif // V8_COMPILER_GRAPH_INL_H_