Revision: 25085
Author: [email protected]
Date: Mon Nov 3 17:52:51 2014 UTC
Log: Fix build because of dead fields.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/699673002
https://code.google.com/p/v8/source/detail?r=25085
Modified:
/branches/bleeding_edge/src/compiler/graph-visualizer.cc
=======================================
--- /branches/bleeding_edge/src/compiler/graph-visualizer.cc Mon Nov 3
17:41:53 2014 UTC
+++ /branches/bleeding_edge/src/compiler/graph-visualizer.cc Mon Nov 3
17:52:51 2014 UTC
@@ -219,7 +219,8 @@
class GraphVisualizer {
public:
- GraphVisualizer(std::ostream& os, Zone* zone, const Graph* graph); //
NOLINT
+ GraphVisualizer(std::ostream& os, Zone* zone, const Graph* graph)
+ : all_(zone, graph), os_(os) {}
void Print();
@@ -228,10 +229,8 @@
private:
void PrintEdge(Node::Edge edge);
- Zone* zone_;
AllNodes all_;
std::ostream& os_;
- const Graph* const graph_;
DISALLOW_COPY_AND_ASSIGN(GraphVisualizer);
};
@@ -388,14 +387,6 @@
}
os_ << "}\n";
}
-
-
-GraphVisualizer::GraphVisualizer(std::ostream& os, Zone* zone,
- const Graph* graph) // NOLINT
- : zone_(zone),
- all_(zone, graph),
- os_(os),
- graph_(graph) {}
std::ostream& operator<<(std::ostream& os, const AsDOT& ad) {
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.