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

Unified Diff: lib/compiler/implementation/ssa/tracer.dart

Issue 10387080: Accept more labels per switch case. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove debug-print. Created 8 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
Index: lib/compiler/implementation/ssa/tracer.dart
diff --git a/lib/compiler/implementation/ssa/tracer.dart b/lib/compiler/implementation/ssa/tracer.dart
index 89b90381fd674add82e67eeb420282ab337f3a8f..78e0d493995be5a9a93be8f6546fc282336684ca 100644
--- a/lib/compiler/implementation/ssa/tracer.dart
+++ b/lib/compiler/implementation/ssa/tracer.dart
@@ -181,6 +181,7 @@ class HInstructionStringifier implements HVisitor<String> {
case HType.UNKNOWN: prefix = 'v'; break;
case HType.CONFLICTING: prefix = 'c'; break;
case HType.INDEXABLE_PRIMITIVE: prefix = 'r'; break;
+ case HType.NULL: prefix = 'u'; break;
default: unreachable();
}
}

Powered by Google App Engine
This is Rietveld 408576698