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

Unified Diff: src/scopes.cc

Issue 636403003: Assign bailout and type feedback IDs in a post-pass (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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
Index: src/scopes.cc
diff --git a/src/scopes.cc b/src/scopes.cc
index de364a5b489050408dd04a32c308054566ae9fec..2037eddde58130f3b99a437f721dd62e58f38593 100644
--- a/src/scopes.cc
+++ b/src/scopes.cc
@@ -271,8 +271,8 @@ bool Scope::Analyze(CompilationInfo* info) {
// Allocate the variables.
{
- AstNodeFactory<AstNullVisitor> ast_node_factory(
- info->zone(), info->ast_value_factory(), info->ast_node_id_gen());
+ AstNodeFactory<AstNullVisitor> ast_node_factory(info->zone(),
+ info->ast_value_factory());
if (!top->AllocateVariables(info, &ast_node_factory)) return false;
}

Powered by Google App Engine
This is Rietveld 408576698