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

Unified Diff: src/ast-inl.h

Issue 5908001: Fix issue 977, occasional failure of the DeltaBlue benchmark. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build/ia32
Patch Set: Created 10 years 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/ast.h ('k') | src/full-codegen.cc » ('j') | src/full-codegen.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast-inl.h
diff --git a/src/ast-inl.h b/src/ast-inl.h
index d1017121da248fbed2938379463efcad665fabf7..eb81c3a83982ab811e7bdefd352439747e2b425c 100644
--- a/src/ast-inl.h
+++ b/src/ast-inl.h
@@ -71,14 +71,16 @@ DoWhileStatement::DoWhileStatement(ZoneStringList* labels)
: IterationStatement(labels),
cond_(NULL),
condition_position_(-1),
- next_id_(GetNextId()) {
+ continue_id_(GetNextId()),
+ back_edge_id_(GetNextId()) {
}
WhileStatement::WhileStatement(ZoneStringList* labels)
: IterationStatement(labels),
cond_(NULL),
- may_have_function_literal_(true) {
+ may_have_function_literal_(true),
+ body_id_(GetNextId()) {
}
@@ -89,7 +91,8 @@ ForStatement::ForStatement(ZoneStringList* labels)
next_(NULL),
may_have_function_literal_(true),
loop_variable_(NULL),
- next_id_(GetNextId()) {
+ continue_id_(GetNextId()),
+ body_id_(GetNextId()) {
}
« no previous file with comments | « src/ast.h ('k') | src/full-codegen.cc » ('j') | src/full-codegen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698