1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Update IR

IR commit: 7586ac611a32d8f4116721b1d96b855c1087eac9
This commit is contained in:
Dmitry Stogov
2024-03-20 13:49:21 +03:00
parent fa512dc4cb
commit f87632e7ca
2 changed files with 2 additions and 2 deletions

View File

@@ -513,7 +513,7 @@ void ir_dump_codegen(const ir_ctx *ctx, FILE *f)
}
fprintf(f, "#BB%d: end=l_%d", b, bb->end);
if (bb->flags && IR_BB_UNREACHABLE) {
if (bb->flags & IR_BB_UNREACHABLE) {
fprintf(f, ", U");
}
if (bb->dom_parent > 0) {

View File

@@ -121,7 +121,7 @@ void ir_save(const ir_ctx *ctx, uint32_t save_flags, FILE *f)
uint32_t b = ctx->cfg_map[i];
ir_block *bb = &ctx->cfg_blocks[b];
fprintf(f, "#BB%d: end=l_%d", b, bb->end);
if (bb->flags && IR_BB_UNREACHABLE) {
if (bb->flags & IR_BB_UNREACHABLE) {
fprintf(f, ", U");
}
if (bb->dom_parent > 0) {