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

Unified Diff: pkg/compiler/lib/src/ssa/codegen.dart

Issue 1157773009: Disable failing assertion. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/ssa/codegen.dart
diff --git a/pkg/compiler/lib/src/ssa/codegen.dart b/pkg/compiler/lib/src/ssa/codegen.dart
index 9463de11ac86c133aa5e0c6945dd8637b575e4ba..c59b1a35c4e6741b17f731af5151c0d13064f10a 100644
--- a/pkg/compiler/lib/src/ssa/codegen.dart
+++ b/pkg/compiler/lib/src/ssa/codegen.dart
@@ -1285,7 +1285,9 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
visitTruncatingDivide(HTruncatingDivide node) {
assert(node.isUInt31(compiler));
- assert(node.left.isUInt32(compiler));
+ // TODO(karlklose): Enable this assertion again when type propagation is
+ // fixed. Issue 23555.
+// assert(node.left.isUInt32(compiler));
assert(node.right.isPositiveInteger(compiler));
use(node.left);
js.Expression jsLeft = pop();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698