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

Unified Diff: src/compiler/graph.cc

Issue 429863004: Fix build failures with LLVM-GCC 4.2 on Mac (moar). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Moar of the same. Created 6 years, 5 months 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 | « no previous file | test/cctest/compiler/codegen-tester.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « no previous file | test/cctest/compiler/codegen-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698