mirror of
https://github.com/php/php-src.git
synced 2026-04-18 13:31:27 +02:00
Fixed bug #75267 (possible &/&& mixup)
This commit is contained in:
@@ -690,7 +690,7 @@ static void zend_dump_block_info(const zend_cfg *cfg, int n, uint32_t dump_flags
|
||||
if (b->flags & ZEND_BB_KILL_VAR) {
|
||||
fprintf(stderr, " kill_var");
|
||||
}
|
||||
if (!(dump_flags & ZEND_DUMP_HIDE_UNREACHABLE) & !(b->flags & ZEND_BB_REACHABLE)) {
|
||||
if (!(dump_flags & ZEND_DUMP_HIDE_UNREACHABLE) && !(b->flags & ZEND_BB_REACHABLE)) {
|
||||
fprintf(stderr, " unreachable");
|
||||
}
|
||||
if (b->flags & ZEND_BB_LOOP_HEADER) {
|
||||
|
||||
Reference in New Issue
Block a user