Fixed specializer bug.

This commit is contained in:
Dmitry Stogov 2004-09-24 06:06:39 +00:00
parent 8799fed634
commit aeab5f8723

View File

@ -643,8 +643,12 @@
#endif
#if defined(ZEND_VM_SPEC) && (ZEND_VM_KIND == ZEND_VM_KIND_CALL)
ZEND_VM_NULL_HANDLER();
#else
ZEND_VM_NULL_HANDLER()
{
zend_error_noreturn(E_ERROR, "Invalid opcode %d/%d/%d.", EX(opline)->opcode, EX(opline)->op1.op_type, EX(opline)->op2.op_type);
ZEND_VM_RETURN_FROM_EXECUTE_LOOP();
}
#endif