| Index: src/compiler/graph-inl.h
|
| diff --git a/src/compiler/graph-inl.h b/src/compiler/graph-inl.h
|
| index 033d88f4858dd23d9a5a7e7b70a21432829959be..c135ae5d77bc13b05bf3229f8debb74821d51ea7 100644
|
| --- a/src/compiler/graph-inl.h
|
| +++ b/src/compiler/graph-inl.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef V8_COMPILER_GRAPH_INL_H_
|
| #define V8_COMPILER_GRAPH_INL_H_
|
|
|
| -#include "src/compiler/generic-algorithm-inl.h"
|
| +#include "src/compiler/generic-algorithm.h"
|
| #include "src/compiler/graph.h"
|
|
|
| namespace v8 {
|
| @@ -15,8 +15,7 @@ namespace compiler {
|
| template <class Visitor>
|
| void Graph::VisitNodeInputsFromEnd(Visitor* visitor) {
|
| Zone tmp_zone(zone()->isolate());
|
| - GenericGraphVisit::Visit<Visitor, NodeInputIterationTraits<Node> >(
|
| - this, &tmp_zone, end(), visitor);
|
| + GenericGraphVisit::Visit<Visitor>(this, &tmp_zone, end(), visitor);
|
| }
|
|
|
| } // namespace compiler
|
|
|