Index: runtime/vm/simulator_arm64.cc |
diff --git a/runtime/vm/simulator_arm64.cc b/runtime/vm/simulator_arm64.cc |
index b3cac8be23c8c7d07b0bb325e02cc04f9096a361..e517fa43dd255d05aa7db02cb466df0f3bf61439 100644 |
--- a/runtime/vm/simulator_arm64.cc |
+++ b/runtime/vm/simulator_arm64.cc |
@@ -1603,7 +1603,7 @@ void Simulator::DoRedirectedCall(Instr* instr) { |
Redirection* redirection = Redirection::FromHltInstruction(instr); |
uword external = redirection->external_function(); |
if (IsTracingExecution()) { |
- OS::Print("Call to host function at 0x%" Pd "\n", external); |
+ THR_Print("Call to host function at 0x%" Pd "\n", external); |
} |
if ((redirection->call_kind() == kRuntimeCall) || |
@@ -3406,13 +3406,13 @@ void Simulator::DecodeDPSimd2(Instr* instr) { |
void Simulator::InstructionDecode(Instr* instr) { |
pc_modified_ = false; |
if (IsTracingExecution()) { |
- OS::Print("%" Pu64 " ", icount_); |
+ THR_Print("%" Pu64 " ", icount_); |
const uword start = reinterpret_cast<uword>(instr); |
const uword end = start + Instr::kInstrSize; |
if (FLAG_support_disassembler) { |
Disassembler::Disassemble(start, end); |
} else { |
- OS::Print("Disassembler not supported in this mode.\n"); |
+ THR_Print("Disassembler not supported in this mode.\n"); |
} |
} |