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

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

Issue 172133006: Use temporaryId instead of the Ssa node in the tracer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart b/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
index 0fe6c66b8864df4092b5023889bc357a84b565a6..37731ba36fd9bd7429291f6ceb9226e910ff285a 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
@@ -449,7 +449,7 @@ class HInstructionStringifier implements HVisitor<String> {
}
String visitStringify(HStringify node) {
- return "Stringify: ${node.inputs[0]}";
+ return "Stringify ${temporaryId(node.inputs[0])}";
}
String visitSubtract(HSubtract node) => handleInvokeBinary(node, '-');
« 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