diff options
Diffstat (limited to 'src/panfrost/util/pan_ir.h')
-rw-r--r-- | src/panfrost/util/pan_ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/panfrost/util/pan_ir.h b/src/panfrost/util/pan_ir.h index 6b132228ddd..be02dc7576e 100644 --- a/src/panfrost/util/pan_ir.h +++ b/src/panfrost/util/pan_ir.h @@ -128,8 +128,6 @@ typedef struct pan_block { /* Control flow graph */ struct pan_block *successors[2]; - unsigned nr_successors; - struct set *predecessors; /* In liveness analysis, these are live masks (per-component) for @@ -179,4 +177,6 @@ void pan_free_liveness(struct list_head *blocks); uint16_t pan_to_bytemask(unsigned bytes, unsigned mask); +void pan_block_add_successor(pan_block *block, pan_block *successor); + #endif |