Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: src/compiler/graph-inl.h

Issue 760493003: Make generic algorithm a little less generic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-generic-stuff-3
Patch Set: Rebased. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/graph.h ('k') | src/compiler/graph-replay.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/compiler/graph.h ('k') | src/compiler/graph-replay.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698