Correct comments.
Все проверки выполнены успешно
The build was successful.

Этот коммит содержится в:
Rafal Kupiec 2018-09-06 18:00:34 +02:00
родитель cb8ddaab5f
Коммит 43a36f070c
Подписано: belliash
Идентификатор ключа GPG: 4E829243E0CFE6B4

Просмотреть файл

@ -2858,7 +2858,7 @@ static sxi32 VmByteCodeExec(
MemObjSetType(pTos, MEMOBJ_INT);
}
if(pInstr->iP1) {
/* Pre-icrement */
/* Pre-increment */
PH7_MemObjStore(pObj, pTos);
}
}
@ -2909,13 +2909,13 @@ static sxi32 VmByteCodeExec(
MemObjSetType(pTos, MEMOBJ_INT);
}
if(pInstr->iP1) {
/* Pre-icrement */
/* Pre-decrement */
PH7_MemObjStore(pObj, pTos);
}
}
} else {
if(pInstr->iP1) {
/* Pre-increment */
/* Pre-decrement */
if(pTos->iFlags & MEMOBJ_REAL) {
pTos->rVal--;
/* Try to get an integer representation */