Add execution marker to each instruction.
All checks were successful
The build was successful.

This commit is contained in:
2018-08-31 08:25:48 +02:00
parent 3e2a5b3be2
commit 838842fa02
2 changed files with 7 additions and 0 deletions

View File

@@ -1123,6 +1123,7 @@ struct VmInstr {
sxi32 iP1; /* First operand */
sxu32 iP2; /* Second operand (Often the jump destination) */
void *p3; /* Third operand (Often Upper layer private data) */
sxbool bExec; /* Whether the instruction has been already executed or not */
SyString *pFile; /* File name */
sxu32 iLine; /* Line number */
};