From 3004285bebdfc0fc799b9278ff3ea763d41fe121 Mon Sep 17 00:00:00 2001 From: Tianming Xu Date: Mon, 7 Sep 2020 00:05:27 +0800 Subject: [PATCH] [Fix] fix compilation error when setting USE_RELAY_DEBUG (#6380) * fix compilation error when setting USE_RELAY_DEBUG * awake github ci-test * remove unnecessary debug log --- src/runtime/vm/vm.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/runtime/vm/vm.cc b/src/runtime/vm/vm.cc index aeee137..0a0ff26 100644 --- a/src/runtime/vm/vm.cc +++ b/src/runtime/vm/vm.cc @@ -351,9 +351,6 @@ void VirtualMachine::RunLoop() { main_loop: auto const& instr = code_[this->pc_]; DLOG(INFO) << "Executing(" << pc_ << "): " << instr; -#if USE_RELAY_DEBUG - InstructionPrint(std::cout, instr); -#endif // USE_RELAY_DEBUG switch (instr.op) { case Opcode::Move: { -- 2.7.4