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

Unified Diff: runtime/vm/il_printer.cc

Issue 12330072: Ensure that compile time types for comparisons are recomputed once comparison are specialized. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/vm/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index 9fc644a273511d8e7d6ac141eaf8e688417d29f3..d4cafa333edf9e2a735a79f6c31b9f4bf907ce42 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -112,8 +112,7 @@ void CompileType::PrintTo(BufferFormatter* f) const {
} else {
f->Print("?, ");
}
- f->Print("%s}", (type_ != NULL) ? String::Handle(type_->Name()).ToCString()
- : "?");
+ f->Print("%s}", (type_ != NULL) ? type_->ToCString() : "?");
}

Powered by Google App Engine
This is Rietveld 408576698