Skip to content

Commit

Permalink
Print MAY_BE_INDIRECT in dump
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Jul 21, 2021
1 parent e3d90fa commit d1456d1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Zend/Optimizer/zend_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ static void zend_dump_type_info(uint32_t info, zend_class_entry *ce, int is_inst
if (first) first = 0; else fprintf(stderr, ", ");
fprintf(stderr, "undef");
}
if (info & MAY_BE_INDIRECT) {
if (first) first = 0; else fprintf(stderr, ", ");
fprintf(stderr, "ind");
}
if (info & MAY_BE_REF) {
if (first) first = 0; else fprintf(stderr, ", ");
fprintf(stderr, "ref");
Expand Down

0 comments on commit d1456d1

Please sign in to comment.