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

Unified Diff: src/hydrogen-instructions.cc

Issue 252583004: Don't adopt the AST id from previous if id is none, since previous may have mismatching expected st… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ensure we advance while consuming simulates Created 6 years, 8 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 | src/hydrogen-removable-simulates.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index ceedafc091ad5544b16aa076d8289323f96c9d1f..2253a0c3574cda1a918f732df372eea73a8c4c28 100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -2595,9 +2595,6 @@ void HPhi::AddIndirectUsesTo(int* dest) {
void HSimulate::MergeWith(ZoneList<HSimulate*>* list) {
- if (!list->is_empty() && !HasAstId()) {
- set_ast_id(list->last()->ast_id());
- }
while (!list->is_empty()) {
HSimulate* from = list->RemoveLast();
ZoneList<HValue*>* from_values = &from->values_;
« no previous file with comments | « no previous file | src/hydrogen-removable-simulates.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698