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

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

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month 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/validate.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/validate.dart b/sdk/lib/_internal/compiler/implementation/ssa/validate.dart
index 29051a25ba4d66f1a1b433157d1888c6cd904202..5e9598e95b2c5acbc759aaca406254ba033768a9 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/validate.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/validate.dart
@@ -80,7 +80,7 @@ class HValidator extends HInstructionVisitor {
markInvalid("dominated block not pointing back");
}
if (dominated.id == null || dominated.id <= lastId) {
- markInvalid("dominated.id === null or dominated has <= id");
+ markInvalid("dominated.id == null or dominated has <= id");
}
lastId = dominated.id;
}

Powered by Google App Engine
This is Rietveld 408576698