update /src

This commit is contained in:
lyon 2022-05-01 11:56:31 +08:00
parent 8639c55334
commit dafcc8d705

View File

@ -751,7 +751,7 @@ static Arg* VM_instruction_handler_OPT(PikaObj* self, VMState* vs, char* data) {
goto OPT_exit;
}
if (strEqu("~", data)) {
outArg = arg_setInt(outArg, "", ~num1_i);
outArg = arg_setInt(outArg, "", ~num2_i);
goto OPT_exit;
}
if (strEqu(">>", data)) {
@ -771,7 +771,11 @@ static Arg* VM_instruction_handler_OPT(PikaObj* self, VMState* vs, char* data) {
goto OPT_exit;
}
if (strEqu(" not ", data)) {
outArg = arg_setInt(outArg, "", !num1_i);
outArg = arg_setInt(outArg, "", !num2_i);
goto OPT_exit;
}
if (strEqu(" import ", data)){
outArg = NULL;
goto OPT_exit;
}
OPT_exit: