[Fix] fix compilation error when setting USE_RELAY_DEBUG (#6380)
authorTianming Xu <tianmingxu.tmxu@gmail.com>
Sun, 6 Sep 2020 16:05:27 +0000 (00:05 +0800)
committerGitHub <noreply@github.com>
Sun, 6 Sep 2020 16:05:27 +0000 (09:05 -0700)
* fix compilation error when setting USE_RELAY_DEBUG

* awake github ci-test

* remove unnecessary debug log

src/runtime/vm/vm.cc

index aeee137..0a0ff26 100644 (file)
@@ -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: {