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

Unified Diff: runtime/vm/intrinsifier.cc

Issue 1314673008: Migrate logging infrastructure Isolate->Thread (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix test. Created 5 years, 3 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/intrinsifier.cc
diff --git a/runtime/vm/intrinsifier.cc b/runtime/vm/intrinsifier.cc
index ffeda36663a962e105f3530a6544b9f3fdd282c1..5e24dd35739cf3ef92ae6be446fe713656cb9c05 100644
--- a/runtime/vm/intrinsifier.cc
+++ b/runtime/vm/intrinsifier.cc
@@ -155,7 +155,7 @@ bool Intrinsifier::GraphIntrinsify(const ParsedFunction& parsed_function,
}
if (FLAG_print_flow_graph && FlowGraphPrinter::ShouldPrint(function)) {
- ISL_Print("Intrinsic graph before\n");
+ THR_Print("Intrinsic graph before\n");
FlowGraphPrinter printer(*graph);
printer.PrintBlocks();
}
@@ -165,7 +165,7 @@ bool Intrinsifier::GraphIntrinsify(const ParsedFunction& parsed_function,
allocator.AllocateRegisters();
if (FLAG_print_flow_graph && FlowGraphPrinter::ShouldPrint(function)) {
- ISL_Print("Intrinsic graph after\n");
+ THR_Print("Intrinsic graph after\n");
FlowGraphPrinter printer(*graph);
printer.PrintBlocks();
}
« no previous file with comments | « runtime/vm/il_printer.cc ('k') | runtime/vm/isolate.h » ('j') | runtime/vm/thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698