| Index: src/compiler/graph-inl.h
|
| diff --git a/src/compiler/graph-inl.h b/src/compiler/graph-inl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3a21737c6e796c523800f540afb802458b5b5b21
|
| --- /dev/null
|
| +++ b/src/compiler/graph-inl.h
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2013 the V8 project authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef V8_COMPILER_GRAPH_INL_H_
|
| +#define V8_COMPILER_GRAPH_INL_H_
|
| +
|
| +#include "src/compiler/generic-algorithm.h"
|
| +#include "src/compiler/graph.h"
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +namespace compiler {
|
| +
|
| +template <class Visitor>
|
| +void Graph::VisitNodeInputsFromEnd(Visitor* visitor) {
|
| + Zone tmp_zone;
|
| + GenericGraphVisit::Visit<Visitor>(this, &tmp_zone, end(), visitor);
|
| +}
|
| +
|
| +} // namespace compiler
|
| +} // namespace internal
|
| +} // namespace v8
|
| +
|
| +#endif // V8_COMPILER_GRAPH_INL_H_
|
|
|