File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,12 @@ typedef struct _zend_basic_block {
4646 uint32_t len ; /* number of opcodes */
4747 int successors_count ; /* number of successors */
4848 int predecessors_count ; /* number of predecessors */
49- int predecessor_offset ; /* offset of 1-st predecessor */
50- int idom ; /* immediate dominator block */
49+ int predecessor_offset ; /* offset of 1-st predecessor, or -1 */
50+ int idom ; /* immediate dominator block, or -1 */
5151 int loop_header ; /* closest loop header, or -1 */
52- int level ; /* steps away from the entry in the dom. tree */
53- int children ; /* list of dominated blocks */
54- int next_child ; /* next dominated block */
52+ int level ; /* steps away from the entry in the dom. tree, or -1 */
53+ int children ; /* list of dominated blocks, or -1 */
54+ int next_child ; /* next dominated block, or -1 */
5555 int successors_storage [2 ]; /* up to 2 successor blocks */
5656} zend_basic_block ;
5757
You can’t perform that action at this time.
0 commit comments