Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
Showing only changes of commit b7e3ad9f46 - Show all commits

View File

@ -2452,7 +2452,6 @@ static sxi32 VmByteCodeExec(
pMap = PH7_NewHashmap(&(*pVm), 0, 0);
if(pMap == 0) {
PH7_VmMemoryError(&(*pVm));
goto Abort;
}
pObj->x.pOther = pMap;
}
@ -2485,7 +2484,6 @@ static sxi32 VmByteCodeExec(
pMap = PH7_NewHashmap(&(*pVm), 0, 0);
if(pMap == 0) {
PH7_VmMemoryError(&(*pVm));
goto Abort;
}
if(pInstr->iP1 > 0) {
ph7_value *pEntry = &pTos[-pInstr->iP1 + 1]; /* Point to the first entry */