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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart

Issue 15917017: Don't let HCheck instructions prevent GVN. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/ssa/codegen.dart (revision 23842)
+++ sdk/lib/_internal/compiler/implementation/ssa/codegen.dart (working copy)
@@ -620,6 +620,7 @@
HCheck check = argument;
use(check.checkedInput);
} else {
+ assert(variableNames.hasName(argument));
push(new js.VariableUse(variableNames.getName(argument)));
}
}

Powered by Google App Engine
This is Rietveld 408576698