From 97299f77c192b1a15561b2b0d80a16a7472915f9 Mon Sep 17 00:00:00 2001 From: lyon1998 <645275593@qq.com> Date: Fri, 15 Oct 2021 11:04:56 +0800 Subject: [PATCH] VM test ok --- src/PikaVM.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/PikaVM.c b/src/PikaVM.c index 97ab27082..7344ad7c3 100644 --- a/src/PikaVM.c +++ b/src/PikaVM.c @@ -137,14 +137,6 @@ Arg* pikaVM_runAsmInstruct(PikaObj* self, Args* methodArgs = New_args(NULL); while (1) { Arg* methodArg = arg_copy(queue_popArg(q1)); - - if (methodArg == NULL) { - /* argL List no found */ - args_setErrorCode(sysRes, 4); - args_setSysOut(sysRes, "[error] runner: arg no found."); - goto RUN_exit; - } - if (NULL == methodArg) { break; }