File tree 2 files changed +31
-3
lines changed 2 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -3348,10 +3348,18 @@ static zend_always_inline zend_result _zend_update_type_info(
3348
3348
uint8_t opcode ;
3349
3349
3350
3350
if (!ssa_opcodes ) {
3351
- ZEND_ASSERT (j == (opline - op_array -> opcodes ) + 1 && "Use must be in next opline" );
3351
+ if (j != (opline - op_array -> opcodes ) + 1 ) {
3352
+ /* Use must be in next opline */
3353
+ tmp |= key_type | MAY_BE_ARRAY_OF_ANY | MAY_BE_ARRAY_OF_REF ;
3354
+ break ;
3355
+ }
3352
3356
opcode = op_array -> opcodes [j ].opcode ;
3353
3357
} else {
3354
- ZEND_ASSERT (ssa_opcodes [j ] == opline + 1 && "Use must be in next opline" );
3358
+ if (ssa_opcodes [j ] != opline + 1 ) {
3359
+ /* Use must be in next opline */
3360
+ tmp |= key_type | MAY_BE_ARRAY_OF_ANY | MAY_BE_ARRAY_OF_REF ;
3361
+ break ;
3362
+ }
3355
3363
opcode = ssa_opcodes [j ]-> opcode ;
3356
3364
}
3357
3365
switch (opcode ) {
@@ -3413,7 +3421,10 @@ static zend_always_inline zend_result _zend_update_type_info(
3413
3421
EMPTY_SWITCH_DEFAULT_CASE ()
3414
3422
}
3415
3423
j = zend_ssa_next_use (ssa -> ops , ssa_op -> result_def , j );
3416
- ZEND_ASSERT (j < 0 && "There should only be one use" );
3424
+ if (j >= 0 ) {
3425
+ tmp |= key_type | MAY_BE_ARRAY_OF_ANY | MAY_BE_ARRAY_OF_REF ;
3426
+ break ;
3427
+ }
3417
3428
}
3418
3429
}
3419
3430
if (((tmp & MAY_BE_ARRAY ) && (tmp & MAY_BE_ARRAY_KEY_ANY ))
Original file line number Diff line number Diff line change
1
+ --TEST--
2
+ Type inference 022: FETCH_DIM_W
3
+ --INI--
4
+ opcache.enable=1
5
+ opcache.enable_cli=1
6
+ opcache.optimization_level=-1
7
+ --FILE--
8
+ <?php
9
+ function &foo (&$ a , $ n ) {
10
+ foreach (array (0 ) as $ _ ) {
11
+ return $ a [$ n ];
12
+ }
13
+ }
14
+ ?>
15
+ DONE
16
+ --EXPECT--
17
+ DONE
You can’t perform that action at this time.
0 commit comments