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

Unified Diff: src/compiler/source-position.cc

Issue 446963002: NodeAuxData needs a Zone, not a Graph. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | « src/compiler/node-aux-data-inl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/source-position.cc
diff --git a/src/compiler/source-position.cc b/src/compiler/source-position.cc
index d20f6520b1cccc32271a67a8308bbe0d81cc470b..11783900a0a1b01be3d1cefb5e386d429c76cc13 100644
--- a/src/compiler/source-position.cc
+++ b/src/compiler/source-position.cc
@@ -29,7 +29,7 @@ SourcePositionTable::SourcePositionTable(Graph* graph)
: graph_(graph),
decorator_(NULL),
current_position_(SourcePosition::Invalid()),
- table_(graph) {}
+ table_(graph->zone()) {}
void SourcePositionTable::AddDecorator() {
« no previous file with comments | « src/compiler/node-aux-data-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698