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:
@@ -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) {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user