Skip to content

Commit f87632e

Browse files
committed
Update IR
IR commit: 7586ac611a32d8f4116721b1d96b855c1087eac9
1 parent fa512dc commit f87632e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/opcache/jit/ir/ir_dump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ void ir_dump_codegen(const ir_ctx *ctx, FILE *f)
513513
}
514514

515515
fprintf(f, "#BB%d: end=l_%d", b, bb->end);
516-
if (bb->flags && IR_BB_UNREACHABLE) {
516+
if (bb->flags & IR_BB_UNREACHABLE) {
517517
fprintf(f, ", U");
518518
}
519519
if (bb->dom_parent > 0) {

ext/opcache/jit/ir/ir_save.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ void ir_save(const ir_ctx *ctx, uint32_t save_flags, FILE *f)
121121
uint32_t b = ctx->cfg_map[i];
122122
ir_block *bb = &ctx->cfg_blocks[b];
123123
fprintf(f, "#BB%d: end=l_%d", b, bb->end);
124-
if (bb->flags && IR_BB_UNREACHABLE) {
124+
if (bb->flags & IR_BB_UNREACHABLE) {
125125
fprintf(f, ", U");
126126
}
127127
if (bb->dom_parent > 0) {

0 commit comments

Comments
 (0)