Temporarily enable debugging by default.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-26 20:09:30 +02:00
parent 178f3820f6
commit a7bbd55d48
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 0 deletions

View File

@ -986,6 +986,7 @@ PH7_PRIVATE sxi32 PH7_VmInit(
/* Precompile the built-in library */
VmEvalChunk(&(*pVm), 0, &sBuiltin, PH7_AERSCRIPT_CODE);
/* Initialize instructions debug container */
pVm->bDebug = TRUE;
if(pVm->bDebug) {
SySetInit(&pVm->aInstrSet, &pVm->sAllocator, sizeof(VmInstr));
}