Skip to content

Commit

Permalink
Merge pull request #288 from realFlowControl/fix-JMPZNZ
Browse files Browse the repository at this point in the history
fix compile issue with PHP 8.2 and 8.3 on 32 bit hardware
  • Loading branch information
realFlowControl authored May 12, 2024
2 parents 9e39df8 + 5823192 commit efb458d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ static zend_op_array* php_parallel_cache_create(const zend_function *source, zen
case ZEND_FAST_CALL:
opline->op1.jmp_addr = &opcodes[opline->op1.jmp_addr - source->op_array.opcodes];
break;
#if PHP_VERSION_ID < 80200
case ZEND_JMPZNZ:
#endif
case ZEND_JMPZ:
case ZEND_JMPNZ:
case ZEND_JMPZ_EX:
Expand Down

0 comments on commit efb458d

Please sign in to comment.