Skip to content

Commit b7c6244

Browse files
committed
Add new line before basic-block labels (except for the first BB0)
1 parent 0684b9f commit b7c6244

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ext/opcache/Optimizer/zend_dump.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,9 @@ static void zend_dump_block_info(const zend_cfg *cfg, int n, uint32_t dump_flags
734734
{
735735
zend_basic_block *b = cfg->blocks + n;
736736

737+
if (n > 0) {
738+
fprintf(stderr, "\n");
739+
}
737740
fprintf(stderr, "BB%d:\n ;", n);
738741
if (b->flags & ZEND_BB_START) {
739742
fprintf(stderr, " start");

0 commit comments

Comments
 (0)