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

Unified Diff: runtime/vm/il_printer.cc

Issue 258563004: Copy of Issue 231383002 after hard disk crash: First step in improving instance of test for a fixed… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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
===================================================================
--- runtime/vm/il_printer.cc (revision 35442)
+++ runtime/vm/il_printer.cc (working copy)
@@ -395,6 +395,17 @@
}
+void TestCidsInstr::PrintOperandsTo(BufferFormatter* f) const {
+ left()->PrintTo(f);
+ f->Print(" %s [", Token::Str(kind()));
+ for (intptr_t i = 0; i < cid_results().length(); i += 2) {
+ f->Print("0x%" Px ":%s ",
+ cid_results()[i], cid_results()[i + 1] == 0 ? "false" : "true");
+ }
+ f->Print("] ");
+}
+
+
void EqualityCompareInstr::PrintOperandsTo(BufferFormatter* f) const {
left()->PrintTo(f);
f->Print(" %s ", Token::Str(kind()));

Powered by Google App Engine
This is Rietveld 408576698