}
/* prevent wrapping quirkiness on some processors where << 64 + x == << x */
- if (Z_LVAL_P(op2) >= SIZEOF_LONG * 8) {
+ if (Z_LVAL_P(op2) >= SIZEOF_ZEND_LONG * 8) {
ZVAL_LONG(result, 0);
return SUCCESS;
}
}
/* prevent wrapping quirkiness on some processors where >> 64 + x == >> x */
- if (Z_LVAL_P(op2) >= SIZEOF_LONG * 8) {
+ if (Z_LVAL_P(op2) >= SIZEOF_ZEND_LONG * 8) {
ZVAL_LONG(result, (Z_LVAL_P(op1) < 0) ? -1 : 0);
return SUCCESS;
}