Index: src/compiler/graph-replay.h |
diff --git a/src/compiler/graph-replay.h b/src/compiler/graph-replay.h |
index f41311e3bfd6ca24edb4b723e03a6f24ad8e075c..be89ebd045b531af864567e6d8ee5ebfb495fe95 100644 |
--- a/src/compiler/graph-replay.h |
+++ b/src/compiler/graph-replay.h |
@@ -5,7 +5,6 @@ |
#ifndef V8_COMPILER_GRAPH_REPLAY_H_ |
#define V8_COMPILER_GRAPH_REPLAY_H_ |
-#include "src/compiler/generic-algorithm.h" |
#include "src/compiler/node.h" |
namespace v8 { |
@@ -18,7 +17,7 @@ class Graph; |
// Helper class to print a full replay of a graph. This replay can be used to |
// materialize the same graph within a C++ unit test and hence test subsequent |
// optimization passes on a graph without going through the construction steps. |
-class GraphReplayPrinter FINAL : public NullNodeVisitor { |
+class GraphReplayPrinter { |
public: |
#ifdef DEBUG |
static void PrintReplay(Graph* graph); |
@@ -26,9 +25,6 @@ class GraphReplayPrinter FINAL : public NullNodeVisitor { |
static void PrintReplay(Graph* graph) {} |
#endif |
- void Pre(Node* node); |
- void PostEdge(Node* from, int index, Node* to); |
- |
private: |
GraphReplayPrinter() {} |