Reviewers: titzer,

Description:
Fix build failures with LLVM-GCC 4.2 on Mac (moar).

[email protected]

Please review this at https://codereview.chromium.org/429863004/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -1 lines):
  M src/compiler/graph.cc


Index: src/compiler/graph.cc
diff --git a/src/compiler/graph.cc b/src/compiler/graph.cc
index 4e69f0fd17d5b7e8ca7a0f2ead5966d3749e2d40..81824f543010a745a513f10d19c37ab78b28a778 100644
--- a/src/compiler/graph.cc
+++ b/src/compiler/graph.cc
@@ -19,7 +19,8 @@ namespace internal {
 namespace compiler {

 Graph::Graph(Zone* zone)
- : GenericGraph(zone), decorators_(DecoratorVector::allocator_type(zone)) {}
+    : GenericGraph<Node>(zone),
+      decorators_(DecoratorVector::allocator_type(zone)) {}


 Node* Graph::NewNode(Operator* op, int input_count, Node** inputs) {


--
--
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.

Reply via email to