Skip to content

Commit 4d21ad3

Browse files
committed
Added EXPECTED(). Most functions have arguments.
1 parent cf84bf5 commit 4d21ad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_execute.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ static zend_always_inline void zend_vm_stack_free_args(zend_execute_data *call T
192192
{
193193
uint32_t num_args = ZEND_CALL_NUM_ARGS(call);
194194

195-
if (num_args > 0) {
195+
if (EXPECTED(num_args > 0)) {
196196
zval *end = ZEND_CALL_ARG(call, 1);
197197
zval *p = end + num_args;
198198

0 commit comments

Comments
 (0)