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

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

Issue 13019003: Enable full type-checks in checked mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix a bug. Created 7 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
Index: sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
index fac0952ecd6c018c1e297898e7547eed5ff825a0..1814e33a4d1c8259565588b95042991c90fddc9e 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
@@ -264,9 +264,6 @@ class SsaConditionMerger extends HGraphVisitor {
// A [HCheck] instruction with control flow uses its input
// multiple times, so we avoid generating it at use site.
if (user is HCheck && user.isControlFlow()) return false;
- // A [HIs] instruction uses its input multiple times, so we
- // avoid generating it at use site.
- if (user is HIs) return false;
return true;
}

Powered by Google App Engine
This is Rietveld 408576698