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

Unified Diff: frog/leg/ssa/tracer.dart

Issue 9112012: Implement code generation for === and !==. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix a bug and update status files. Created 8 years, 12 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: frog/leg/ssa/tracer.dart
diff --git a/frog/leg/ssa/tracer.dart b/frog/leg/ssa/tracer.dart
index b46d061c082b82beb522d9d488960f92ec6b0392..f97427228b36ea828251037978a0e7205de04031 100644
--- a/frog/leg/ssa/tracer.dart
+++ b/frog/leg/ssa/tracer.dart
@@ -207,6 +207,8 @@ class HInstructionStringifier implements HVisitor<String> {
String visitGreater(HGreater node) => visitInvokeStatic(node);
String visitGreaterEqual(HGreaterEqual node) => visitInvokeStatic(node);
+ String visitIdentity(HIdentity node) => visitInvokeStatic(node);
+
String visitIf(HIf node) {
HBasicBlock thenBlock = currentBlock.successors[0];
HBasicBlock elseBlock = currentBlock.successors[1];

Powered by Google App Engine
This is Rietveld 408576698